Skip to content

Commit 7e72784

Browse files
update urls nlp2
1 parent 02da28c commit 7e72784

14 files changed

+121
-72
lines changed

nlp_class2/glove.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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
import os
35
import json
46
import numpy as np

nlp_class2/ner_baseline.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
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

nlp_class2/ner_rnn.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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
from ner_baseline import get_data
35
from pos_rnn import RNN
46

nlp_class2/pos_baseline.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
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

nlp_class2/pos_hmm.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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
import numpy as np
35
import matplotlib.pyplot as plt
46

nlp_class2/pos_rnn.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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
import numpy as np
35
import matplotlib.pyplot as plt
46
import theano

nlp_class2/recursive_tensorflow.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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

46
import sys

nlp_class2/recursive_theano.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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
import sys
35
import numpy as np
46
import matplotlib.pyplot as plt

nlp_class2/rntn_tensorflow.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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

46
import sys

nlp_class2/rntn_theano.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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
import sys
35
import numpy as np
46
import matplotlib.pyplot as plt

0 commit comments

Comments
 (0)