Last active
May 12, 2017 11:01
-
-
Save atsusy/e13b5009b41550ff4fb7f3de61c9af34 to your computer and use it in GitHub Desktop.
List words from Coursera's https://www.coursera.org/learn/neural-networks/ Transcript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
coursera-dl -u <USERNAME> -p <PASSWORD> neural-networks -f "txt" | |
find neural-networks -name '*.en.txt' | xargs cat | sed -e 's/[^[:alpha:]\ ]//g' | tr " " "\n" | tr "[:upper:]" "[:lower:]" | sort -f | uniq -i >& neural-networks.words.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment