File tree Expand file tree Collapse file tree 14 files changed +121
-72
lines changed Expand file tree Collapse file tree 14 files changed +121
-72
lines changed Original file line number Diff line number Diff line change 1- # Course URL: https://udemy.com/natural-language-processing-with-deep-learning-in-python
1+ # Course URL:
2+ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python
3+ # https://udemy.com/natural-language-processing-with-deep-learning-in-python
24import os
35import json
46import numpy as np
Original file line number Diff line number Diff line change 1- # Course URL: https://udemy.com/natural-language-processing-with-deep-learning-in-python
1+ # Course URL:
2+ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python
3+ # https://udemy.com/natural-language-processing-with-deep-learning-in-python
4+
25# data from https://github.com/aritter/twitter_nlp/blob/master/data/annotated/ner.txt
36# data2 from http://schwa.org/projects/resources/wiki/Wikiner#WikiGold
47
Original file line number Diff line number Diff line change 1- # Course URL: https://udemy.com/natural-language-processing-with-deep-learning-in-python
1+ # Course URL:
2+ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python
3+ # https://udemy.com/natural-language-processing-with-deep-learning-in-python
24from ner_baseline import get_data
35from pos_rnn import RNN
46
Original file line number Diff line number Diff line change 1- # Course URL: https://udemy.com/natural-language-processing-with-deep-learning-in-python
1+ # Course URL:
2+ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python
3+ # https://udemy.com/natural-language-processing-with-deep-learning-in-python
4+
25# You can get the data from this URL: http://www.cnts.ua.ac.be/conll2000/chunking/
36# not considering context
47
Original file line number Diff line number Diff line change 1- # Course URL: https://udemy.com/natural-language-processing-with-deep-learning-in-python
1+ # Course URL:
2+ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python
3+ # https://udemy.com/natural-language-processing-with-deep-learning-in-python
24import numpy as np
35import matplotlib .pyplot as plt
46
Original file line number Diff line number Diff line change 1- # Course URL: https://udemy.com/natural-language-processing-with-deep-learning-in-python
1+ # Course URL:
2+ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python
3+ # https://udemy.com/natural-language-processing-with-deep-learning-in-python
24import numpy as np
35import matplotlib .pyplot as plt
46import theano
Original file line number Diff line number Diff line change 1- # Course URL: https://udemy.com/natural-language-processing-with-deep-learning-in-python
1+ # Course URL:
2+ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python
3+ # https://udemy.com/natural-language-processing-with-deep-learning-in-python
24# data is from: http://nlp.stanford.edu/sentiment/
35
46import sys
Original file line number Diff line number Diff line change 1- # Course URL: https://udemy.com/natural-language-processing-with-deep-learning-in-python
1+ # Course URL:
2+ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python
3+ # https://udemy.com/natural-language-processing-with-deep-learning-in-python
24import sys
35import numpy as np
46import matplotlib .pyplot as plt
Original file line number Diff line number Diff line change 1- # Course URL: https://udemy.com/natural-language-processing-with-deep-learning-in-python
1+ # Course URL:
2+ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python
3+ # https://udemy.com/natural-language-processing-with-deep-learning-in-python
24# data is from: http://nlp.stanford.edu/sentiment/
35
46import sys
Original file line number Diff line number Diff line change 1- # Course URL: https://udemy.com/natural-language-processing-with-deep-learning-in-python
1+ # Course URL:
2+ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python
3+ # https://udemy.com/natural-language-processing-with-deep-learning-in-python
24import sys
35import numpy as np
46import matplotlib .pyplot as plt
You can’t perform that action at this time.
0 commit comments