Skip to content

Instantly share code, notes, and snippets.

@lakshaygupta21
Created August 18, 2020 19:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lakshaygupta21/c5a4b144c6b8641fe15391c115345ee3 to your computer and use it in GitHub Desktop.
Save lakshaygupta21/c5a4b144c6b8641fe15391c115345ee3 to your computer and use it in GitHub Desktop.
const mongoose = require("mongoose");
const TrainingSchema = new mongoose.Schema({
input: [Number, Number, Number],
output: [Number]
});
module.exports = Train = mongoose.model("trainingdatas", TrainingSchema);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment