├── .gitignore ├── .mvn ├── jvm.config ├── maven.config └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── CODE_OF_CONDUCT.adoc ├── LICENSE ├── README.adoc ├── README.md ├── images ├── SCDF_TF_Sentiment.png ├── TensorFlowProcessorArcutectureOverview.png ├── VideoIcon.png ├── VikiMaxiAdi.gif ├── scdf-tensorflow-object-detection-arch.png ├── scdf-tensorflow-pose-estimation-arch.png └── webcamPoseEstimation.gif ├── mvnw ├── mvnw.cmd ├── pom.xml ├── spring-cloud-starter-stream-common-tensorflow ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── springframework │ │ └── cloud │ │ └── stream │ │ └── app │ │ └── tensorflow │ │ ├── processor │ │ ├── DefaultOutputMessageBuilder.java │ │ ├── JsonTensor.java │ │ ├── OutputMessageBuilder.java │ │ ├── OutputMode.java │ │ ├── TensorFlowService.java │ │ ├── TensorJsonConverter.java │ │ ├── TensorflowCommonProcessorConfiguration.java │ │ ├── TensorflowCommonProcessorProperties.java │ │ ├── TensorflowInputConverter.java │ │ └── TensorflowOutputConverter.java │ │ └── util │ │ ├── GraphicsUtils.java │ │ └── ModelExtractor.java │ └── test │ ├── java │ └── org │ │ └── springframework │ │ └── cloud │ │ └── stream │ │ └── app │ │ └── tensorflow │ │ └── util │ │ └── ModelExtractorTest.java │ └── resources │ └── tensorflow │ ├── model.tar.gz │ ├── model.zip │ └── model │ └── linear_regression_graph.proto ├── spring-cloud-starter-stream-processor-image-recognition ├── README.adoc ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── springframework │ │ │ └── cloud │ │ │ └── stream │ │ │ └── app │ │ │ └── image │ │ │ └── recognition │ │ │ └── processor │ │ │ ├── ImageRecognitionOutputMessageBuilder.java │ │ │ ├── ImageRecognitionProcessorConfiguration.java │ │ │ ├── ImageRecognitionProcessorProperties.java │ │ │ ├── ImageRecognitionTensorflowInputConverter.java │ │ │ └── ImageRecognitionTensorflowOutputConverter.java │ └── resources │ │ ├── META-INF │ │ ├── dataflow-configuration-metadata-whitelist.properties │ │ ├── spring-configuration-metadata-whitelist.properties │ │ └── spring.provides │ │ └── config │ │ └── application.yml │ └── test │ ├── java │ └── org │ │ └── springframework │ │ └── cloud │ │ └── stream │ │ └── app │ │ └── image │ │ └── recognition │ │ └── processor │ │ ├── ImageRecognitionProcessorPropertiesTests.java │ │ ├── ImageRecognitionProcessorWhitelistPropertiesTests.java │ │ └── inception │ │ └── ImageRecognitionTensorflowProcessorIntegrationTests.java │ └── resources │ ├── SCDF_TF_Sentiment.png │ └── images │ └── panda.jpeg ├── spring-cloud-starter-stream-processor-object-detection ├── README.adoc ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── springframework │ │ │ └── cloud │ │ │ └── stream │ │ │ └── app │ │ │ └── object │ │ │ └── detection │ │ │ ├── mocel │ │ │ └── ObjectDetection.java │ │ │ ├── processor │ │ │ ├── GraphicsUtils.java │ │ │ ├── ObjectDetectionOutputMessageBuilder.java │ │ │ ├── ObjectDetectionProcessorConfiguration.java │ │ │ ├── ObjectDetectionProcessorProperties.java │ │ │ ├── ObjectDetectionTensorflowInputConverter.java │ │ │ └── ObjectDetectionTensorflowOutputConverter.java │ │ │ └── protos │ │ │ └── StringIntLabelMapOuterClass.java │ ├── proto │ │ └── string_int_label_map.proto │ └── resources │ │ ├── META-INF │ │ ├── dataflow-configuration-metadata-whitelist.properties │ │ ├── spring-configuration-metadata-whitelist.properties │ │ └── spring.provides │ │ └── config │ │ └── application.yml │ └── test │ ├── java │ └── org │ │ └── springframework │ │ └── cloud │ │ └── stream │ │ └── app │ │ └── object │ │ └── detection │ │ └── processor │ │ ├── ObjectDetectionProcessorPropertiesTests.java │ │ ├── ObjectDetectionProcessorWhitelistPropertiesTests.java │ │ └── detection │ │ └── ObjectDetectionTensorflowProcessorIntegrationTests.java │ └── resources │ ├── images │ ├── object-detection.jpg │ ├── panda.jpeg │ ├── pivotal.jpeg │ └── tourists.jpg │ ├── test-object-detection.json │ └── test-panda.json ├── spring-cloud-starter-stream-processor-pose-estimation ├── README.adoc ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── springframework │ │ │ └── cloud │ │ │ └── stream │ │ │ └── app │ │ │ └── pose │ │ │ └── estimation │ │ │ ├── model │ │ │ ├── Body.java │ │ │ ├── Limb.java │ │ │ ├── Model.java │ │ │ ├── Part.java │ │ │ └── PoseMatcher.java │ │ │ └── processor │ │ │ ├── DebugVisualizationUtility.java │ │ │ ├── PoseEstimateOutputMessageBuilder.java │ │ │ ├── PoseEstimationProcessorConfiguration.java │ │ │ ├── PoseEstimationProcessorProperties.java │ │ │ ├── PoseEstimationTensorflowInputConverter.java │ │ │ └── PoseEstimationTensorflowOutputConverter.java │ └── resources │ │ ├── META-INF │ │ ├── dataflow-configuration-metadata-whitelist.properties │ │ ├── spring-configuration-metadata-whitelist.properties │ │ └── spring.provides │ │ └── config │ │ └── application.yml │ └── test │ ├── java │ └── org │ │ └── springframework │ │ └── cloud │ │ └── stream │ │ └── app │ │ └── pose │ │ └── estimation │ │ ├── model │ │ └── PoseMatcherTest.java │ │ └── processor │ │ ├── PoseEstimationProcessorPropertiesTests.java │ │ ├── PoseEstimationProcessorWhitelistPropertiesTests.java │ │ └── PoseEstimationTensorflowProcessorIntegrationTests.java │ └── resources │ ├── images │ ├── VikiMaxiAdi.jpg │ ├── VikiMaxiAdi2.jpg │ ├── VitruvianKid.jpg │ ├── image2.jpg │ ├── maxi2.jpg │ ├── pivotalOffice.jpeg │ ├── s1p2017_panel.jpg │ ├── test1.jpg │ └── tourists.jpg │ └── pose-tourists.json ├── spring-cloud-starter-stream-processor-tensorflow ├── README.adoc ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── springframework │ │ │ └── cloud │ │ │ └── stream │ │ │ └── app │ │ │ └── tensorflow │ │ │ └── processor │ │ │ └── TensorflowProcessorConfiguration.java │ └── resources │ │ └── META-INF │ │ ├── dataflow-configuration-metadata-whitelist.properties │ │ ├── spring-configuration-metadata-whitelist.properties │ │ └── spring.provides │ └── test │ └── java │ └── org │ └── springframework │ └── cloud │ └── stream │ └── app │ └── tensorflow │ └── processor │ ├── TensorJsonConverterTests.java │ ├── TensorflowProcessorPropertiesTests.java │ ├── TensorflowProcessorWhitelistPropertiesTests.java │ └── logisticregression │ └── LinearRegressionTensorflowProcessorIntegrationTests.java ├── spring-cloud-starter-stream-processor-twitter-sentiment ├── README.adoc ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── springframework │ │ │ └── cloud │ │ │ └── stream │ │ │ └── app │ │ │ └── twitter │ │ │ └── sentiment │ │ │ └── processor │ │ │ ├── Sentiment.java │ │ │ ├── TwitterSentimentProcessorConfiguration.java │ │ │ ├── TwitterSentimentProcessorProperties.java │ │ │ ├── TwitterSentimentTensorflowInputConverter.java │ │ │ ├── TwitterSentimentTensorflowOutputConverter.java │ │ │ └── WordVocabulary.java │ └── resources │ │ └── META-INF │ │ ├── dataflow-configuration-metadata-whitelist.properties │ │ ├── spring-configuration-metadata-whitelist.properties │ │ └── spring.provides │ └── test │ └── java │ └── org │ └── springframework │ └── cloud │ └── stream │ └── app │ └── twitter │ └── sentiment │ └── processor │ ├── TwitterSentimentProcessorPropertiesTests.java │ └── twitter │ └── TwitterSentimentTensorflowProcessorIntegrationTests.java ├── tensorflow-app-dependencies └── pom.xml └── tensorflow-app-starters-test-support ├── pom.xml └── src └── main ├── java └── org │ └── springframework │ └── cloud │ └── stream │ └── app │ └── test │ └── tensorflow │ ├── JsonUtils.java │ └── TensorflowProcessorTestConfiguration.java └── resources ├── tensorflow ├── model │ ├── linear_regression.txt │ └── linear_regression_graph.proto └── python │ └── LinearRegression.py └── tfInput.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/jvm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/.mvn/jvm.config -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/CODE_OF_CONDUCT.adoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/README.adoc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tensorflow is no longer actively maintained by VMware, Inc. 2 | 3 | -------------------------------------------------------------------------------- /images/SCDF_TF_Sentiment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/images/SCDF_TF_Sentiment.png -------------------------------------------------------------------------------- /images/TensorFlowProcessorArcutectureOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/images/TensorFlowProcessorArcutectureOverview.png -------------------------------------------------------------------------------- /images/VideoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/images/VideoIcon.png -------------------------------------------------------------------------------- /images/VikiMaxiAdi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/images/VikiMaxiAdi.gif -------------------------------------------------------------------------------- /images/scdf-tensorflow-object-detection-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/images/scdf-tensorflow-object-detection-arch.png -------------------------------------------------------------------------------- /images/scdf-tensorflow-pose-estimation-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/images/scdf-tensorflow-pose-estimation-arch.png -------------------------------------------------------------------------------- /images/webcamPoseEstimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/images/webcamPoseEstimation.gif -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/pom.xml -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/pom.xml -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/DefaultOutputMessageBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/DefaultOutputMessageBuilder.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/JsonTensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/JsonTensor.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/OutputMessageBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/OutputMessageBuilder.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/OutputMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/OutputMode.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorFlowService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorFlowService.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorJsonConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorJsonConverter.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowCommonProcessorConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowCommonProcessorConfiguration.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowCommonProcessorProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowCommonProcessorProperties.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowInputConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowInputConverter.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowOutputConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowOutputConverter.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/util/GraphicsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/util/GraphicsUtils.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/util/ModelExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/util/ModelExtractor.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/test/java/org/springframework/cloud/stream/app/tensorflow/util/ModelExtractorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/test/java/org/springframework/cloud/stream/app/tensorflow/util/ModelExtractorTest.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/test/resources/tensorflow/model.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/test/resources/tensorflow/model.tar.gz -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/test/resources/tensorflow/model.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/test/resources/tensorflow/model.zip -------------------------------------------------------------------------------- /spring-cloud-starter-stream-common-tensorflow/src/test/resources/tensorflow/model/linear_regression_graph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-common-tensorflow/src/test/resources/tensorflow/model/linear_regression_graph.proto -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/README.adoc -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/pom.xml -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/main/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionOutputMessageBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/main/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionOutputMessageBuilder.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/main/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionProcessorConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/main/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionProcessorConfiguration.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/main/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionProcessorProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/main/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionProcessorProperties.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/main/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionTensorflowInputConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/main/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionTensorflowInputConverter.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/main/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionTensorflowOutputConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/main/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionTensorflowOutputConverter.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/main/resources/META-INF/dataflow-configuration-metadata-whitelist.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/main/resources/META-INF/dataflow-configuration-metadata-whitelist.properties -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/main/resources/META-INF/spring-configuration-metadata-whitelist.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/main/resources/META-INF/spring-configuration-metadata-whitelist.properties -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/main/resources/META-INF/spring.provides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/main/resources/META-INF/spring.provides -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/test/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionProcessorPropertiesTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/test/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionProcessorPropertiesTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/test/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionProcessorWhitelistPropertiesTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/test/java/org/springframework/cloud/stream/app/image/recognition/processor/ImageRecognitionProcessorWhitelistPropertiesTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/test/java/org/springframework/cloud/stream/app/image/recognition/processor/inception/ImageRecognitionTensorflowProcessorIntegrationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/test/java/org/springframework/cloud/stream/app/image/recognition/processor/inception/ImageRecognitionTensorflowProcessorIntegrationTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/test/resources/SCDF_TF_Sentiment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/test/resources/SCDF_TF_Sentiment.png -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-image-recognition/src/test/resources/images/panda.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-image-recognition/src/test/resources/images/panda.jpeg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/README.adoc -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/pom.xml -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/mocel/ObjectDetection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/mocel/ObjectDetection.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/GraphicsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/GraphicsUtils.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionOutputMessageBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionOutputMessageBuilder.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionProcessorConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionProcessorConfiguration.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionProcessorProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionProcessorProperties.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionTensorflowInputConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionTensorflowInputConverter.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionTensorflowOutputConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionTensorflowOutputConverter.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/protos/StringIntLabelMapOuterClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/java/org/springframework/cloud/stream/app/object/detection/protos/StringIntLabelMapOuterClass.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/proto/string_int_label_map.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/proto/string_int_label_map.proto -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/resources/META-INF/dataflow-configuration-metadata-whitelist.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/resources/META-INF/dataflow-configuration-metadata-whitelist.properties -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/resources/META-INF/spring-configuration-metadata-whitelist.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/resources/META-INF/spring-configuration-metadata-whitelist.properties -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/resources/META-INF/spring.provides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/resources/META-INF/spring.provides -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/test/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionProcessorPropertiesTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/test/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionProcessorPropertiesTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/test/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionProcessorWhitelistPropertiesTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/test/java/org/springframework/cloud/stream/app/object/detection/processor/ObjectDetectionProcessorWhitelistPropertiesTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/test/java/org/springframework/cloud/stream/app/object/detection/processor/detection/ObjectDetectionTensorflowProcessorIntegrationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/test/java/org/springframework/cloud/stream/app/object/detection/processor/detection/ObjectDetectionTensorflowProcessorIntegrationTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/test/resources/images/object-detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/test/resources/images/object-detection.jpg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/test/resources/images/panda.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/test/resources/images/panda.jpeg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/test/resources/images/pivotal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/test/resources/images/pivotal.jpeg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/test/resources/images/tourists.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/test/resources/images/tourists.jpg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/test/resources/test-object-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/test/resources/test-object-detection.json -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-object-detection/src/test/resources/test-panda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-object-detection/src/test/resources/test-panda.json -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/README.adoc -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/pom.xml -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/model/Body.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/model/Body.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/model/Limb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/model/Limb.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/model/Model.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/model/Model.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/model/Part.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/model/Part.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/model/PoseMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/model/PoseMatcher.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/DebugVisualizationUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/DebugVisualizationUtility.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimateOutputMessageBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimateOutputMessageBuilder.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationProcessorConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationProcessorConfiguration.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationProcessorProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationProcessorProperties.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationTensorflowInputConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationTensorflowInputConverter.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationTensorflowOutputConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationTensorflowOutputConverter.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/resources/META-INF/dataflow-configuration-metadata-whitelist.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/resources/META-INF/dataflow-configuration-metadata-whitelist.properties -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/resources/META-INF/spring-configuration-metadata-whitelist.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/resources/META-INF/spring-configuration-metadata-whitelist.properties -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/resources/META-INF/spring.provides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/resources/META-INF/spring.provides -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/main/resources/config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/main/resources/config/application.yml -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/java/org/springframework/cloud/stream/app/pose/estimation/model/PoseMatcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/java/org/springframework/cloud/stream/app/pose/estimation/model/PoseMatcherTest.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationProcessorPropertiesTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationProcessorPropertiesTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationProcessorWhitelistPropertiesTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationProcessorWhitelistPropertiesTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationTensorflowProcessorIntegrationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/java/org/springframework/cloud/stream/app/pose/estimation/processor/PoseEstimationTensorflowProcessorIntegrationTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/VikiMaxiAdi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/VikiMaxiAdi.jpg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/VikiMaxiAdi2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/VikiMaxiAdi2.jpg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/VitruvianKid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/VitruvianKid.jpg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/image2.jpg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/maxi2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/maxi2.jpg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/pivotalOffice.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/pivotalOffice.jpeg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/s1p2017_panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/s1p2017_panel.jpg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/test1.jpg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/tourists.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/images/tourists.jpg -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/pose-tourists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-pose-estimation/src/test/resources/pose-tourists.json -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-tensorflow/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-tensorflow/README.adoc -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-tensorflow/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-tensorflow/pom.xml -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowProcessorConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-tensorflow/src/main/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowProcessorConfiguration.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-tensorflow/src/main/resources/META-INF/dataflow-configuration-metadata-whitelist.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-tensorflow/src/main/resources/META-INF/dataflow-configuration-metadata-whitelist.properties -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-tensorflow/src/main/resources/META-INF/spring-configuration-metadata-whitelist.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-tensorflow/src/main/resources/META-INF/spring-configuration-metadata-whitelist.properties -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-tensorflow/src/main/resources/META-INF/spring.provides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-tensorflow/src/main/resources/META-INF/spring.provides -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-tensorflow/src/test/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorJsonConverterTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-tensorflow/src/test/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorJsonConverterTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-tensorflow/src/test/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowProcessorPropertiesTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-tensorflow/src/test/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowProcessorPropertiesTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-tensorflow/src/test/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowProcessorWhitelistPropertiesTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-tensorflow/src/test/java/org/springframework/cloud/stream/app/tensorflow/processor/TensorflowProcessorWhitelistPropertiesTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-tensorflow/src/test/java/org/springframework/cloud/stream/app/tensorflow/processor/logisticregression/LinearRegressionTensorflowProcessorIntegrationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-tensorflow/src/test/java/org/springframework/cloud/stream/app/tensorflow/processor/logisticregression/LinearRegressionTensorflowProcessorIntegrationTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/README.adoc -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/pom.xml -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/Sentiment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/Sentiment.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/TwitterSentimentProcessorConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/TwitterSentimentProcessorConfiguration.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/TwitterSentimentProcessorProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/TwitterSentimentProcessorProperties.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/TwitterSentimentTensorflowInputConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/TwitterSentimentTensorflowInputConverter.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/TwitterSentimentTensorflowOutputConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/TwitterSentimentTensorflowOutputConverter.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/WordVocabulary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/src/main/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/WordVocabulary.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/src/main/resources/META-INF/dataflow-configuration-metadata-whitelist.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/src/main/resources/META-INF/dataflow-configuration-metadata-whitelist.properties -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/src/main/resources/META-INF/spring-configuration-metadata-whitelist.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/src/main/resources/META-INF/spring-configuration-metadata-whitelist.properties -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/src/main/resources/META-INF/spring.provides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/src/main/resources/META-INF/spring.provides -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/src/test/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/TwitterSentimentProcessorPropertiesTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/src/test/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/TwitterSentimentProcessorPropertiesTests.java -------------------------------------------------------------------------------- /spring-cloud-starter-stream-processor-twitter-sentiment/src/test/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/twitter/TwitterSentimentTensorflowProcessorIntegrationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/spring-cloud-starter-stream-processor-twitter-sentiment/src/test/java/org/springframework/cloud/stream/app/twitter/sentiment/processor/twitter/TwitterSentimentTensorflowProcessorIntegrationTests.java -------------------------------------------------------------------------------- /tensorflow-app-dependencies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/tensorflow-app-dependencies/pom.xml -------------------------------------------------------------------------------- /tensorflow-app-starters-test-support/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/tensorflow-app-starters-test-support/pom.xml -------------------------------------------------------------------------------- /tensorflow-app-starters-test-support/src/main/java/org/springframework/cloud/stream/app/test/tensorflow/JsonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/tensorflow-app-starters-test-support/src/main/java/org/springframework/cloud/stream/app/test/tensorflow/JsonUtils.java -------------------------------------------------------------------------------- /tensorflow-app-starters-test-support/src/main/java/org/springframework/cloud/stream/app/test/tensorflow/TensorflowProcessorTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/tensorflow-app-starters-test-support/src/main/java/org/springframework/cloud/stream/app/test/tensorflow/TensorflowProcessorTestConfiguration.java -------------------------------------------------------------------------------- /tensorflow-app-starters-test-support/src/main/resources/tensorflow/model/linear_regression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/tensorflow-app-starters-test-support/src/main/resources/tensorflow/model/linear_regression.txt -------------------------------------------------------------------------------- /tensorflow-app-starters-test-support/src/main/resources/tensorflow/model/linear_regression_graph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/tensorflow-app-starters-test-support/src/main/resources/tensorflow/model/linear_regression_graph.proto -------------------------------------------------------------------------------- /tensorflow-app-starters-test-support/src/main/resources/tensorflow/python/LinearRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/tensorflow-app-starters-test-support/src/main/resources/tensorflow/python/LinearRegression.py -------------------------------------------------------------------------------- /tensorflow-app-starters-test-support/src/main/resources/tfInput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/tensorflow/HEAD/tensorflow-app-starters-test-support/src/main/resources/tfInput.json --------------------------------------------------------------------------------