-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from tue-robotics/feat/test
Added test for image_recognition_tensorflow
- Loading branch information
Showing
1,987 changed files
with
93 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
image_recognition_tensorflow/src/image_recognition_tensorflow/evaluate_classifier.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/usr/bin/env python | ||
|
||
from __future__ import print_function | ||
|
||
from image_recognition_tensorflow.object_recognizer import ObjectRecognizer | ||
from image_recognition_util.classification_score_matrix import ClassificationScoreMatrix | ||
from image_recognition_util.image_reader import read_annotated | ||
|
||
|
||
def evaluate_classifier(graph_path, labels_path, annotated_dir, output, | ||
input_tensor="Cast:0", output_tensor="final_result:0"): | ||
""" | ||
Evaluate a given classifier against a directory of annotated images. | ||
The script will output a .csv that can be evaluated. | ||
:param graph_path: Path to graph.pb | ||
:param labels_path: Path to labels.txt | ||
:param annotated_dir: Directory path where the annotated images are stored, to be verified | ||
:param output: Output file | ||
:param input_tensor: Input tensor name | ||
:param output_tensor: Output tensor name | ||
:return: Final accuracy | ||
""" | ||
object_recognizer = ObjectRecognizer(graph_path, labels_path, input_tensor, output_tensor) | ||
|
||
classification_score_matrix = ClassificationScoreMatrix(object_recognizer.labels) | ||
|
||
print("Evaluating classified with labels: {}".format(object_recognizer.labels)) | ||
|
||
matches = [] | ||
for label, image, filename in read_annotated(annotated_dir): | ||
if label not in object_recognizer.labels: | ||
print("Skipping image with label '{}', label not present in classifier".format(label)) | ||
continue | ||
|
||
scores = object_recognizer.classify(image) | ||
match, best_label, best_score = classification_score_matrix.add_classification(label, scores) | ||
|
||
matches.append(match) | ||
print("{}({}/{})\t{}\t{} classified as {} ({:.3f})\033[0m".format("\033[92m" if match else "\033[91m", | ||
matches.count(True), len(matches), | ||
filename, label, best_label, best_score)) | ||
|
||
classification_score_matrix.write_to_file(output) | ||
|
||
accuracy = float(matches.count(True)) / len(matches) | ||
print("Final accuracy: {}".format(accuracy)) | ||
return accuracy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+6.24 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-10-29-14_350778.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.4 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-10-29-32_774195.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.88 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-10-30-17_571015.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.74 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-10-30-45_200774.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.66 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-10-31-36_413200.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.6 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-10-31-47_184178.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.99 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-10-31-58_590437.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.21 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-10-32-46_985371.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.63 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-11-35-59_882601.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.37 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-11-36-06_448896.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.5 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-11-36-20_867873.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.83 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-11-36-57_387642.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.6 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-11-37-29_785170.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.77 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-11-37-41_986941.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.16 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-11-37-58_602226.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.14 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-11-38-33_026029.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.16 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-11-43-23_041312.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-11-45-46_032626.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.02 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-11-48-46_153013.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.66 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-12-25-37_121126.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.33 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-12-33-00_951272.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.8 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-12-33-19_440358.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.57 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-12-33-26_175870.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.89 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-12-33-37_897200.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.1 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-12-34-40_766124.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.87 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-12-34-56_943267.jpg
Oops, something went wrong.
Binary file added
BIN
+4.99 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-13-07-03_023325.jpg
Oops, something went wrong.
Binary file added
BIN
+4.8 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-13-11-05_736214.jpg
Oops, something went wrong.
Binary file added
BIN
+7.16 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-13-14-17_743523.jpg
Oops, something went wrong.
Binary file added
BIN
+4.59 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-04-13-27-29_472460.jpg
Oops, something went wrong.
Binary file added
BIN
+4.16 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-20-10-49_227552.jpg
Oops, something went wrong.
Binary file added
BIN
+12.9 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-20-12-14_265331.jpg
Oops, something went wrong.
Binary file added
BIN
+10.8 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-20-14-28_409676.jpg
Oops, something went wrong.
Binary file added
BIN
+7.41 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-20-18-43_226220.jpg
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-20-20-49_632954.jpg
Oops, something went wrong.
Binary file added
BIN
+6.98 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-20-26-53_932983.jpg
Oops, something went wrong.
Binary file added
BIN
+11.3 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-21-00-42_935489.jpg
Oops, something went wrong.
Binary file added
BIN
+11.1 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-21-11-02_781933.jpg
Oops, something went wrong.
Binary file added
BIN
+5.23 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-21-11-57_406479.jpg
Oops, something went wrong.
Binary file added
BIN
+8.46 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-21-13-25_941909.jpg
Oops, something went wrong.
Binary file added
BIN
+8.54 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-21-13-55_685105.jpg
Oops, something went wrong.
Binary file added
BIN
+7.82 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-21-15-14_301650.jpg
Oops, something went wrong.
Binary file added
BIN
+9.35 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-21-18-20_421298.jpg
Oops, something went wrong.
Binary file added
BIN
+5.95 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-21-34-13_877805.jpg
Oops, something went wrong.
Binary file added
BIN
+3.92 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-21-37-26_721950.jpg
Oops, something went wrong.
Binary file added
BIN
+7.53 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-21-39-43_412067.jpg
Oops, something went wrong.
Binary file added
BIN
+4.6 KB
...cognition_tensorflow/test/assets/training/banana/2017-11-21-21-42-42_770386.jpg
Oops, something went wrong.
Binary file added
BIN
+6.99 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-10-37-08_033594.jpg
Oops, something went wrong.
Binary file added
BIN
+7.09 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-10-37-15_270269.jpg
Oops, something went wrong.
Binary file added
BIN
+7.55 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-10-38-23_479745.jpg
Oops, something went wrong.
Binary file added
BIN
+6.74 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-10-38-36_158258.jpg
Oops, something went wrong.
Binary file added
BIN
+8.49 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-10-39-06_072216.jpg
Oops, something went wrong.
Binary file added
BIN
+8.51 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-10-39-17_206642.jpg
Oops, something went wrong.
Binary file added
BIN
+10 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-10-39-39_919208.jpg
Oops, something went wrong.
Binary file added
BIN
+8.33 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-10-39-56_471175.jpg
Oops, something went wrong.
Binary file added
BIN
+4.63 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-11-30-01_396100.jpg
Oops, something went wrong.
Binary file added
BIN
+5.24 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-11-30-22_364376.jpg
Oops, something went wrong.
Binary file added
BIN
+8.07 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-11-30-40_268261.jpg
Oops, something went wrong.
Binary file added
BIN
+7.61 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-11-30-55_866725.jpg
Oops, something went wrong.
Binary file added
BIN
+5.58 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-11-34-29_680381.jpg
Oops, something went wrong.
Binary file added
BIN
+5.44 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-11-34-53_267182.jpg
Oops, something went wrong.
Binary file added
BIN
+5.81 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-11-35-12_086608.jpg
Oops, something went wrong.
Binary file added
BIN
+5.76 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-11-35-18_640326.jpg
Oops, something went wrong.
Binary file added
BIN
+2.64 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-11-43-59_386389.jpg
Oops, something went wrong.
Binary file added
BIN
+5.68 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-11-46-04_256476.jpg
Oops, something went wrong.
Binary file added
BIN
+3.69 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-11-49-05_582258.jpg
Oops, something went wrong.
Binary file added
BIN
+4.95 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-12-26-05_671192.jpg
Oops, something went wrong.
Binary file added
BIN
+5.86 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-12-35-36_663755.jpg
Oops, something went wrong.
Binary file added
BIN
+5.97 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-12-35-43_637656.jpg
Oops, something went wrong.
Binary file added
BIN
+6.82 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-12-35-59_456684.jpg
Oops, something went wrong.
Binary file added
BIN
+7.33 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-12-36-06_013861.jpg
Oops, something went wrong.
Binary file added
BIN
+5.82 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-12-36-24_703468.jpg
Oops, something went wrong.
Binary file added
BIN
+6 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-12-36-35_965367.jpg
Oops, something went wrong.
Binary file added
BIN
+2.71 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-13-07-51_967386.jpg
Oops, something went wrong.
Binary file added
BIN
+4.36 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-13-11-34_145077.jpg
Oops, something went wrong.
Binary file added
BIN
+3.75 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-13-14-24_375957.jpg
Oops, something went wrong.
Binary file added
BIN
+7.11 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-04-13-27-16_855902.jpg
Oops, something went wrong.
Binary file added
BIN
+7.39 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-20-11-37_424775.jpg
Oops, something went wrong.
Binary file added
BIN
+6.64 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-20-12-44_386778.jpg
Oops, something went wrong.
Binary file added
BIN
+9.79 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-20-13-33_378712.jpg
Oops, something went wrong.
Binary file added
BIN
+7.09 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-20-14-36_026842.jpg
Oops, something went wrong.
Binary file added
BIN
+7.66 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-20-15-26_089477.jpg
Oops, something went wrong.
Binary file added
BIN
+8.14 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-20-19-16_195034.jpg
Oops, something went wrong.
Binary file added
BIN
+8.25 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-20-20-27_104050.jpg
Oops, something went wrong.
Binary file added
BIN
+4.36 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-20-22-47_056932.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-21-13-05_861614.jpg
Oops, something went wrong.
Binary file added
BIN
+9.01 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-21-17-57_477940.jpg
Oops, something went wrong.
Binary file added
BIN
+6.09 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-21-18-36_701832.jpg
Oops, something went wrong.
Binary file added
BIN
+7.66 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-21-37-40_490238.jpg
Oops, something went wrong.
Binary file added
BIN
+9.14 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-21-38-34_090050.jpg
Oops, something went wrong.
Binary file added
BIN
+8.1 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-21-40-10_403009.jpg
Oops, something went wrong.
Binary file added
BIN
+9.32 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-21-42-03_642612.jpg
Oops, something went wrong.
Binary file added
BIN
+10.2 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-21-43-48_779981.jpg
Oops, something went wrong.
Binary file added
BIN
+6.58 KB
...recognition_tensorflow/test/assets/training/bowl/2017-11-21-21-44-08_073938.jpg
Oops, something went wrong.
Binary file added
BIN
+2.66 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-19-56-26_194413.jpg
Oops, something went wrong.
Binary file added
BIN
+8.83 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-02-36_783404.jpg
Oops, something went wrong.
Binary file added
BIN
+8.77 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-03-07_476778.jpg
Oops, something went wrong.
Binary file added
BIN
+12.9 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-05-06_556863.jpg
Oops, something went wrong.
Binary file added
BIN
+13 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-06-38_868131.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-07-21_806134.jpg
Oops, something went wrong.
Binary file added
BIN
+8.72 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-07-34_480909.jpg
Oops, something went wrong.
Binary file added
BIN
+18.9 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-09-31_636248.jpg
Oops, something went wrong.
Binary file added
BIN
+5.12 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-09-41_139390.jpg
Oops, something went wrong.
Binary file added
BIN
+9.94 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-11-06_838036.jpg
Oops, something went wrong.
Binary file added
BIN
+16.2 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-13-30_991737.jpg
Oops, something went wrong.
Binary file added
BIN
+13.8 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-16-02_091247.jpg
Oops, something went wrong.
Binary file added
BIN
+14.3 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-16-11_959827.jpg
Oops, something went wrong.
Binary file added
BIN
+16 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-16-40_050799.jpg
Oops, something went wrong.
Binary file added
BIN
+17.8 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-17-34_320699.jpg
Oops, something went wrong.
Binary file added
BIN
+22.4 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-17-42_153410.jpg
Oops, something went wrong.
Binary file added
BIN
+20.1 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-18-18_866350.jpg
Oops, something went wrong.
Binary file added
BIN
+9.6 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-21-31_966640.jpg
Oops, something went wrong.
Binary file added
BIN
+10.8 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-21-57_127801.jpg
Oops, something went wrong.
Binary file added
BIN
+7.9 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-22-34_321408.jpg
Oops, something went wrong.
Binary file added
BIN
+10.2 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-24-46_733240.jpg
Oops, something went wrong.
Binary file added
BIN
+2.46 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-25-17_659269.jpg
Oops, something went wrong.
Binary file added
BIN
+4.22 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-25-32_686260.jpg
Oops, something went wrong.
Binary file added
BIN
+4.04 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-25-56_350815.jpg
Oops, something went wrong.
Binary file added
BIN
+7.84 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-26-39_162188.jpg
Oops, something went wrong.
Binary file added
BIN
+6.9 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-26-44_350446.jpg
Oops, something went wrong.
Binary file added
BIN
+2.42 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-27-33_241825.jpg
Oops, something went wrong.
Binary file added
BIN
+4.87 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-28-03_966647.jpg
Oops, something went wrong.
Binary file added
BIN
+1.94 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-28-51_344423.jpg
Oops, something went wrong.
Binary file added
BIN
+7.74 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-28-59_111652.jpg
Oops, something went wrong.
Binary file added
BIN
+7.17 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-30-23_783540.jpg
Oops, something went wrong.
Binary file added
BIN
+7.34 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-30-42_654569.jpg
Oops, something went wrong.
Binary file added
BIN
+2.72 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-31-34_680569.jpg
Oops, something went wrong.
Binary file added
BIN
+7.63 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-32-08_864450.jpg
Oops, something went wrong.
Binary file added
BIN
+4.2 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-33-16_139412.jpg
Oops, something went wrong.
Binary file added
BIN
+12.1 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-34-04_436693.jpg
Oops, something went wrong.
Binary file added
BIN
+3.99 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-34-46_038160.jpg
Oops, something went wrong.
Binary file added
BIN
+2.18 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-34-51_017390.jpg
Oops, something went wrong.
Binary file added
BIN
+4.81 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-35-10_021808.jpg
Oops, something went wrong.
Binary file added
BIN
+4.78 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-38-07_573022.jpg
Oops, something went wrong.
Binary file added
BIN
+2.83 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-38-15_835462.jpg
Oops, something went wrong.
Binary file added
BIN
+7.73 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-38-55_948374.jpg
Oops, something went wrong.
Binary file added
BIN
+6.01 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-40-09_004903.jpg
Oops, something went wrong.
Binary file added
BIN
+2.1 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-40-21_700823.jpg
Oops, something went wrong.
Binary file added
BIN
+2.86 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-40-47_644241.jpg
Oops, something went wrong.
Binary file added
BIN
+5.36 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-41-26_271349.jpg
Oops, something went wrong.
Binary file added
BIN
+3.24 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-41-29_990787.jpg
Oops, something went wrong.
Binary file added
BIN
+7.9 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-41-41_028733.jpg
Oops, something went wrong.
Binary file added
BIN
+3.35 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-42-33_773308.jpg
Oops, something went wrong.
Binary file added
BIN
+3.74 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-42-37_149770.jpg
Oops, something went wrong.
Binary file added
BIN
+18.4 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-43-09_172600.jpg
Oops, something went wrong.
Binary file added
BIN
+11.3 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-43-10_983254.jpg
Oops, something went wrong.
Binary file added
BIN
+17.2 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-43-51_020531.jpg
Oops, something went wrong.
Binary file added
BIN
+7.09 KB
...ecognition_tensorflow/test/assets/training/brush/2017-12-12-20-43-59_390437.jpg
Oops, something went wrong.
Binary file added
BIN
+22.2 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-10-27-52_507935.jpg
Oops, something went wrong.
Binary file added
BIN
+21.4 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-10-27-58_895974.jpg
Oops, something went wrong.
Binary file added
BIN
+28.2 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-10-28-12_734016.jpg
Oops, something went wrong.
Binary file added
BIN
+26.9 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-10-28-21_932690.jpg
Oops, something went wrong.
Binary file added
BIN
+14.3 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-10-28-40_768871.jpg
Oops, something went wrong.
Binary file added
BIN
+14.5 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-10-28-47_821126.jpg
Oops, something went wrong.
Binary file added
BIN
+15.1 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-10-28-53_053057.jpg
Oops, something went wrong.
Binary file added
BIN
+15.5 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-10-29-00_716753.jpg
Oops, something went wrong.
Binary file added
BIN
+17.4 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-11-39-16_130903.jpg
Oops, something went wrong.
Binary file added
BIN
+17.1 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-11-39-25_664802.jpg
Oops, something went wrong.
Binary file added
BIN
+18.5 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-11-39-48_474462.jpg
Oops, something went wrong.
Binary file added
BIN
+15.5 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-11-40-01_651299.jpg
Oops, something went wrong.
Binary file added
BIN
+10.2 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-11-40-25_209587.jpg
Oops, something went wrong.
Binary file added
BIN
+11.3 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-11-40-37_952578.jpg
Oops, something went wrong.
Binary file added
BIN
+17.7 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-11-40-50_610539.jpg
Oops, something went wrong.
Binary file added
BIN
+14.2 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-11-41-19_491128.jpg
Oops, something went wrong.
Binary file added
BIN
+13.8 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-11-43-32_660845.jpg
Oops, something went wrong.
Binary file added
BIN
+8.61 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-11-45-30_095402.jpg
Oops, something went wrong.
Binary file added
BIN
+7.24 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-11-48-15_455406.jpg
Oops, something went wrong.
Binary file added
BIN
+7.81 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-12-25-19_080836.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-12-48-05_446934.jpg
Oops, something went wrong.
Binary file added
BIN
+13.7 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-12-48-20_023647.jpg
Oops, something went wrong.
Binary file added
BIN
+13.3 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-12-48-31_127032.jpg
Oops, something went wrong.
Binary file added
BIN
+13.4 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-12-48-37_276406.jpg
Oops, something went wrong.
Binary file added
BIN
+15.6 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-12-49-07_552717.jpg
Oops, something went wrong.
Binary file added
BIN
+9.16 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-12-49-19_734729.jpg
Oops, something went wrong.
Binary file added
BIN
+9.48 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-13-06-31_126931.jpg
Oops, something went wrong.
Binary file added
BIN
+7.43 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-13-12-13_455226.jpg
Oops, something went wrong.
Binary file added
BIN
+8.86 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-13-14-10_384043.jpg
Oops, something went wrong.
Binary file added
BIN
+7.11 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-04-13-29-00_143941.jpg
Oops, something went wrong.
Binary file added
BIN
+23.3 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-21-20-17-38_051063.jpg
Oops, something went wrong.
Binary file added
BIN
+15.3 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-21-20-18-59_722097.jpg
Oops, something went wrong.
Binary file added
BIN
+46.1 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-21-20-32-44_377530.jpg
Oops, something went wrong.
Binary file added
BIN
+10.2 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-21-21-14-42_908937.jpg
Oops, something went wrong.
Binary file added
BIN
+19.4 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-21-21-22-28_543421.jpg
Oops, something went wrong.
Binary file added
BIN
+17.2 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-21-21-35-57_563891.jpg
Oops, something went wrong.
Binary file added
BIN
+19.1 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-21-21-37-35_017837.jpg
Oops, something went wrong.
Binary file added
BIN
+14.1 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-21-21-39-54_332069.jpg
Oops, something went wrong.
Binary file added
BIN
+12.7 KB
...cognition_tensorflow/test/assets/training/cereal/2017-11-21-21-45-53_171445.jpg
Oops, something went wrong.
Binary file added
BIN
+4.3 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-00-53_702541.jpg
Oops, something went wrong.
Binary file added
BIN
+4.2 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-00-59_003569.jpg
Oops, something went wrong.
Binary file added
BIN
+4.34 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-01-03_156011.jpg
Oops, something went wrong.
Binary file added
BIN
+3.54 KB
...nsorflow/test/assets/training/chewing_gum/2017-10-17-20-01-15_790356 (copy).jpg
Oops, something went wrong.
Binary file added
BIN
+4.5 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-01-15_790356.jpg
Oops, something went wrong.
Binary file added
BIN
+4.08 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-01-23_644149.jpg
Oops, something went wrong.
Binary file added
BIN
+4.2 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-01-40_860414.jpg
Oops, something went wrong.
Binary file added
BIN
+4.68 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-05-49_869962.jpg
Oops, something went wrong.
Binary file added
BIN
+4.93 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-05-53_892362.jpg
Oops, something went wrong.
Binary file added
BIN
+5.01 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-06-00_003702.jpg
Oops, something went wrong.
Binary file added
BIN
+4.73 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-06-07_131346.jpg
Oops, something went wrong.
Binary file added
BIN
+5.26 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-06-26_475446.jpg
Oops, something went wrong.
Binary file added
BIN
+4.89 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-06-33_986338.jpg
Oops, something went wrong.
Binary file added
BIN
+4.32 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-23-15_321857.jpg
Oops, something went wrong.
Binary file added
BIN
+4.14 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-23-23_896334.jpg
Oops, something went wrong.
Binary file added
BIN
+4 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-23-28_848494.jpg
Oops, something went wrong.
Binary file added
BIN
+4.25 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-23-41_889167.jpg
Oops, something went wrong.
Binary file added
BIN
+4.5 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-24-24_218180.jpg
Oops, something went wrong.
Binary file added
BIN
+4.74 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-20-24-39_328857.jpg
Oops, something went wrong.
Binary file added
BIN
+9.21 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-13-27_582484.jpg
Oops, something went wrong.
Binary file added
BIN
+8.07 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-20-33_865801.jpg
Oops, something went wrong.
Binary file added
BIN
+8.41 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-20-40_650008.jpg
Oops, something went wrong.
Binary file added
BIN
+8.47 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-21-42_929756.jpg
Oops, something went wrong.
Binary file added
BIN
+10.2 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-21-52_957690.jpg
Oops, something went wrong.
Binary file added
BIN
+9.93 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-21-57_122558.jpg
Oops, something went wrong.
Binary file added
BIN
+8.84 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-22-02_330154.jpg
Oops, something went wrong.
Binary file added
BIN
+9.14 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-22-05_514587.jpg
Oops, something went wrong.
Binary file added
BIN
+9.04 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-41-07_641896.jpg
Oops, something went wrong.
Binary file added
BIN
+9.44 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-44-56_121137.jpg
Oops, something went wrong.
Binary file added
BIN
+2.65 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-57-16_615505.jpg
Oops, something went wrong.
Binary file added
BIN
+3.2 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-21-58-19_905053.jpg
Oops, something went wrong.
Binary file added
BIN
+3.69 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-22-00-42_641135.jpg
Oops, something went wrong.
Binary file added
BIN
+3.14 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-17-22-03-01_392715.jpg
Oops, something went wrong.
Binary file added
BIN
+3.11 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-19-12-08-32_860470.jpg
Oops, something went wrong.
Binary file added
BIN
+3.64 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-19-13-45-35_811771.jpg
Oops, something went wrong.
Binary file added
BIN
+3.12 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-19-13-48-46_845929.jpg
Oops, something went wrong.
Binary file added
BIN
+2.64 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-19-13-56-27_063785.jpg
Oops, something went wrong.
Binary file added
BIN
+2.36 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-19-13-58-20_631855.jpg
Oops, something went wrong.
Binary file added
BIN
+3 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-19-13-59-53_552849.jpg
Oops, something went wrong.
Binary file added
BIN
+3.95 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-04-37_198919.jpg
Oops, something went wrong.
Binary file added
BIN
+3.96 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-04-43_644986.jpg
Oops, something went wrong.
Binary file added
BIN
+3.97 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-04-47_172605.jpg
Oops, something went wrong.
Binary file added
BIN
+4.05 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-04-50_740120.jpg
Oops, something went wrong.
Binary file added
BIN
+3.9 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-04-57_531972.jpg
Oops, something went wrong.
Binary file added
BIN
+4 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-05-00_205069.jpg
Oops, something went wrong.
Binary file added
BIN
+4.03 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-05-03_660712.jpg
Oops, something went wrong.
Binary file added
BIN
+4.09 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-05-07_685622.jpg
Oops, something went wrong.
Binary file added
BIN
+4.2 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-05-11_916209.jpg
Oops, something went wrong.
Binary file added
BIN
+4.36 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-05-16_269386.jpg
Oops, something went wrong.
Binary file added
BIN
+4.17 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-05-20_156290.jpg
Oops, something went wrong.
Binary file added
BIN
+4.36 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-05-22_517207.jpg
Oops, something went wrong.
Binary file added
BIN
+4.05 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-07-44_470136.jpg
Oops, something went wrong.
Binary file added
BIN
+3.95 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-09-09_360349.jpg
Oops, something went wrong.
Binary file added
BIN
+2.92 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-10-35_670614.jpg
Oops, something went wrong.
Binary file added
BIN
+5.15 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-12-49_895429.jpg
Oops, something went wrong.
Binary file added
BIN
+4.16 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-15-15_071971.jpg
Oops, something went wrong.
Binary file added
BIN
+2.6 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-20-08_192340.jpg
Oops, something went wrong.
Binary file added
BIN
+2.79 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-20-12_334586.jpg
Oops, something went wrong.
Binary file added
BIN
+2.71 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-20-16_710119.jpg
Oops, something went wrong.
Binary file added
BIN
+2.64 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-20-20_926482.jpg
Oops, something went wrong.
Binary file added
BIN
+2.62 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-20-23_638940.jpg
Oops, something went wrong.
Binary file added
BIN
+2.56 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-20-36_976624.jpg
Oops, something went wrong.
Binary file added
BIN
+2.64 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-20-40_327496.jpg
Oops, something went wrong.
Binary file added
BIN
+2.8 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-20-44_878872.jpg
Oops, something went wrong.
Binary file added
BIN
+2.64 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-20-47_352037.jpg
Oops, something went wrong.
Binary file added
BIN
+2.7 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-20-50_790677.jpg
Oops, something went wrong.
Binary file added
BIN
+3.29 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-24-24_624953.jpg
Oops, something went wrong.
Binary file added
BIN
+2.32 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-17-25-52_050189.jpg
Oops, something went wrong.
Binary file added
BIN
+2.52 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-22-28_239123.jpg
Oops, something went wrong.
Binary file added
BIN
+2.65 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-27-41_793788.jpg
Oops, something went wrong.
Binary file added
BIN
+2.64 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-27-45_047480.jpg
Oops, something went wrong.
Binary file added
BIN
+2.62 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-27-47_631363.jpg
Oops, something went wrong.
Binary file added
BIN
+2.51 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-27-49_958334.jpg
Oops, something went wrong.
Binary file added
BIN
+2.48 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-27-52_398325.jpg
Oops, something went wrong.
Binary file added
BIN
+2.46 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-28-05_966669.jpg
Oops, something went wrong.
Binary file added
BIN
+2.76 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-28-12_182111.jpg
Oops, something went wrong.
Binary file added
BIN
+2.79 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-28-21_926247.jpg
Oops, something went wrong.
Binary file added
BIN
+2.84 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-28-28_382721.jpg
Oops, something went wrong.
Binary file added
BIN
+3.25 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-31-12_207643.jpg
Oops, something went wrong.
Binary file added
BIN
+3.07 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-10-23-19-32-28_074084.jpg
Oops, something went wrong.
Binary file added
BIN
+6.98 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-20-08-20_663094.jpg
Oops, something went wrong.
Binary file added
BIN
+5.38 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-20-11-46_600390.jpg
Oops, something went wrong.
Binary file added
BIN
+6.09 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-20-13-24_505079.jpg
Oops, something went wrong.
Binary file added
BIN
+7.63 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-20-15-19_538381.jpg
Oops, something went wrong.
Binary file added
BIN
+8.47 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-20-18-49_410584.jpg
Oops, something went wrong.
Binary file added
BIN
+4.67 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-20-19-46_164966.jpg
Oops, something went wrong.
Binary file added
BIN
+3.92 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-20-19-54_368668.jpg
Oops, something went wrong.
Binary file added
BIN
+4 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-08-53_052079.jpg
Oops, something went wrong.
Binary file added
BIN
+9.88 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-09-27_356784.jpg
Oops, something went wrong.
Binary file added
BIN
+2.84 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-14-37_853232.jpg
Oops, something went wrong.
Binary file added
BIN
+3.44 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-15-34_238290.jpg
Oops, something went wrong.
Binary file added
BIN
+4.3 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-16-06_070172.jpg
Oops, something went wrong.
Binary file added
BIN
+6.45 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-18-05_291721.jpg
Oops, something went wrong.
Binary file added
BIN
+4.84 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-18-41_115597.jpg
Oops, something went wrong.
Binary file added
BIN
+6.01 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-18-55_053127.jpg
Oops, something went wrong.
Binary file added
BIN
+5.46 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-38-39_564065.jpg
Oops, something went wrong.
Binary file added
BIN
+6.33 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-39-48_500005.jpg
Oops, something went wrong.
Binary file added
BIN
+7.6 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-43-53_364259.jpg
Oops, something went wrong.
Binary file added
BIN
+5.8 KB
...tion_tensorflow/test/assets/training/chewing_gum/2017-11-21-21-44-18_307064.jpg
Oops, something went wrong.
Binary file added
BIN
+5.55 KB
...recognition_tensorflow/test/assets/training/coke/2017-10-17-19-59-53_581280.jpg
Oops, something went wrong.
Binary file added
BIN
+5.37 KB
...recognition_tensorflow/test/assets/training/coke/2017-10-17-19-59-59_243724.jpg
Oops, something went wrong.
Binary file added
BIN
+5.24 KB
...recognition_tensorflow/test/assets/training/coke/2017-10-17-20-00-05_380452.jpg
Oops, something went wrong.
Binary file added
BIN
+5.83 KB
...recognition_tensorflow/test/assets/training/coke/2017-10-17-20-00-17_580040.jpg
Oops, something went wrong.
Binary file added
BIN
+6.29 KB
...recognition_tensorflow/test/assets/training/coke/2017-10-17-20-00-26_435802.jpg
Oops, something went wrong.
Binary file added
BIN
+5.83 KB
...recognition_tensorflow/test/assets/training/coke/2017-10-17-20-00-35_667721.jpg
Oops, something went wrong.
Binary file added
BIN
+5.82 KB
...recognition_tensorflow/test/assets/training/coke/2017-10-17-20-07-50_027048.jpg
Oops, something went wrong.
Oops, something went wrong.