|
|
|
|
|
by fnbr
3418 days ago
|
|
What you could do is assemble the data in tabular form so that your data is in the shape: Issue System log
-------- ------------
issue_1 corresponding system log
issue_2 corresponding system log
issue_3 corresponding system log
issue_4 corresponding system log
issue_5 corresponding system log
Once you've done that, you can train some sort of classifier on it, e.g. something like [1]. There's a bunch of stuff you want to do to make sure you're not overfitting (I'd scale your data & use 5-fold cross validation), but that would get you started.[1]: http://scikit-learn.org/stable/tutorial/text_analytics/worki... |
|