KOSASIH / pi-nexus-autonomous-banking-network

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
2 occurrences in this check
Documentation comment not found for method definition predict
16    this.model.fit(X, y, { epochs: 10 });
17  }
18
19  predict(X) {20    return this.model.predict(X);
21  }
22}
Documentation comment not found for method definition train
12    });
13  }
14
15  train(X, y) {16    this.model.fit(X, y, { epochs: 10 });
17  }
18