Github user ijokarumawak commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2686#discussion_r193626870
--- Diff:
nifi-nar-bundles/nifi-deeplearning4j-bundle/nifi-deeplearning4j-processors/src/main/resources/docs/org.apache.nifi.processors.deeplearning4j.DeepLearning4JPredictor/additionalDetails.html
---
@@ -0,0 +1,353 @@
+<!DOCTYPE html>
+<html lang="en">
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+ http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<head>
+<meta charset="utf-8" />
+<title>Deeplearning4JPredictor</title>
+<link rel="stylesheet" href="../../../../../css/component-usage.css"
+ type="text/css" />
+</head>
+
+<body>
+ <!-- Processor Documentation
================================================== -->
+ <h2>Usage Information</h2>
+
+ <p>
+ DeepLearning4JPredictor processor produces predictions by
applying the
+ provided <a href="http://github.com/deeplearning4j"
target="_blank">deeplearning4j</a>
+ model to the FlowFile contents.
+ </p>
+
+ <p>The processor can perform:
+ <ul>
+ <li>classification, or</li>
+ <li>regression</li>
+ </ul>
+ based on the model used.
+
+ <p>The processors has the following properties:
+ <ul>
+ <li>a deeplearning4j classification or regression model
(required)</li>
+ <li>record dimensions (required)</li>
+ <li>field separator (default comma)</li>
+ <li>record separator (default new line character)</li>
+ <li>character set for FlowFile message body (default UTF8)</li>
+ </ul>
--- End diff --
"The processors has the following properties: ..." I'd suggest removing
this section as the content is in duplication with the property doc table
generated by NiFi based on PropertyDescriptors list.
---