Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Model: Text Summary Dev Guide #404

Open
WenheLI opened this issue Aug 4, 2020 · 0 comments
Open

Model: Text Summary Dev Guide #404

WenheLI opened this issue Aug 4, 2020 · 0 comments
Assignees
Labels
model Machine learning model related issues and discussions

Comments

@WenheLI
Copy link
Collaborator

WenheLI commented Aug 4, 2020

To develop a text summary model, three key plugins are required modelDefine, modelTrain, and modelEval.

  • modelDefine: this plugin requires you to write the definition of a model (mainly network structure)
  • modelTrain: this plugin is about how to feed data into the model and how to adjust the model weights
  • modelEval: this plugin requires you to feed some test data and evaluate the output.
  • Note: for this task, you might need to use some tokenize trick in NLP, you can put this process in either modelDefine or modelTrain.

As for the dataAccess and dataCollect, I think csv-data-collect & csv-data-access will help you out. The only thing for you is to find suitable dataset in this task. If the dataset is not in csv format, you might also need to write you own dataAccess & dataCollect.

We can use this thread as a plugin dev Q&A

@WenheLI WenheLI added the model Machine learning model related issues and discussions label Aug 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
model Machine learning model related issues and discussions
Projects
None yet
Development

No branches or pull requests

2 participants