├── .gitignore ├── README.md ├── docs ├── README.md ├── approach.md ├── data_set.md ├── features.md ├── plots │ ├── PAN │ │ ├── Fraction_of_Quoted_sentences_by_Age_Groups.png │ │ ├── Fraction_of_Quoted_sentences_by_Gender.png │ │ ├── Links_Age.png │ │ ├── Links_Gender.png │ │ ├── NER_Age.png │ │ ├── NER_Gender.png │ │ ├── POS_Age.png │ │ ├── POS_CDF.png │ │ ├── POS_Gender.png │ │ ├── Punctuation CDF.png │ │ ├── Punctuation_Age_CDF.png │ │ ├── Punctuation_Gender.png │ │ ├── Readability_Scores_by_Age_Groups.png │ │ ├── Readability_Scores_by_Gender.png │ │ ├── SentenceLength_Age.png │ │ └── SentenceLength_Gender.png │ └── koppel │ │ ├── Discourse_Age.png │ │ ├── Discourse_Gender.png │ │ ├── Links_Age2.png │ │ ├── Links_Gender.png │ │ ├── NER_Age.png │ │ ├── NER_Age2.png │ │ ├── NER_Gender.png │ │ ├── Non-worderrors_Age.png │ │ ├── Non-worderrors_Gender.png │ │ ├── POS_Age.png │ │ ├── POS_Gender.png │ │ ├── SentenceLength_Age.png │ │ ├── SentenceLength_Age2.png │ │ ├── age_characterflooding.png │ │ ├── age_numfact.png │ │ ├── age_numopinion.png │ │ ├── age_opinionscore.png │ │ ├── gender_characterflooding.png │ │ ├── gender_numfact.png │ │ ├── gender_numopinion.png │ │ ├── gender_opinionscore.png │ │ ├── sentenceLength.png │ │ ├── timereference_Age.png │ │ └── timereference_Gender.png └── report │ ├── author-profiling.pdf │ ├── author-profiling.tex │ ├── koppel │ ├── pan │ ├── sig-alternate.cls │ └── sigproc.bib ├── download_data.sh └── src ├── Koppeldata ├── code │ ├── XMLParser_Koppel.py │ ├── authoropinion.py │ └── plot.py └── json data │ ├── age_wise.json │ ├── character_flooding.json │ ├── gender_wise.json │ ├── opinionfact.json │ └── opinionscore.json ├── PANdata ├── StructuredData │ ├── ANOVA_result.csv │ ├── Links.csv │ ├── Links_ANOVA.csv │ ├── NER.csv │ ├── NER_ANOVA.csv │ ├── POS.csv │ ├── POS_ANOVA.csv │ ├── POStags.txt │ ├── Punctuation.csv │ ├── Punctuation_ANOVA.csv │ ├── SentenceLength.csv │ ├── sentenceLength_ANOVA.csv │ └── truth.txt ├── codes │ ├── NER_tagger.py │ ├── POS_distribution.py │ ├── featureValidation.py │ ├── html_links.py │ ├── links_ANOVA.py │ ├── ner_ANOVA.py │ ├── pos_ANOVA.py │ ├── pos_tagging.py │ ├── punctuation.py │ ├── punctuation_ANOVA.py │ ├── sentence_length.py │ ├── sentence_length_ANOVA.py │ └── utils.py ├── plot.py └── plots │ └── plot.py ├── README.md ├── Topics ├── topics_mean_stdev.csv └── topics_mean_stdev.py ├── XMLParser_Koppel.py ├── combine.py ├── dl ├── dta.py ├── parse.py ├── run.py └── train.py ├── feature ├── NER_tagger.py ├── README.md ├── __init__.py ├── anova │ ├── links_ANOVA.py │ ├── ner_ANOVA.py │ ├── pos_ANOVA.py │ ├── punctuation_ANOVA.py │ └── sentence_length_ANOVA.py ├── av_readability.py ├── config.py.template ├── countQuote.py ├── extract.py ├── html_links.py ├── main.py ├── pos_tagging.py ├── punctuation.py ├── readability │ ├── LICENSE.txt │ ├── README.md │ ├── __init__.py │ ├── readability.py │ ├── syllables_en.py │ └── utils.py ├── sentence_length.py ├── topics_mean_stdev.py └── utils.py ├── input_01.txt ├── koppeldata └── plot.py ├── normalizedCSV.py ├── parse ├── config.json ├── doc.py └── truth.py ├── posTagging.py ├── quotes ├── countQuote.py ├── countQuote.py~ ├── plotQuotes.py └── quote.csv ├── readability ├── PANreadability.py ├── PANreadibility.csv └── plotReadability.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/approach.md -------------------------------------------------------------------------------- /docs/data_set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/data_set.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/plots/PAN/Fraction_of_Quoted_sentences_by_Age_Groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/Fraction_of_Quoted_sentences_by_Age_Groups.png -------------------------------------------------------------------------------- /docs/plots/PAN/Fraction_of_Quoted_sentences_by_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/Fraction_of_Quoted_sentences_by_Gender.png -------------------------------------------------------------------------------- /docs/plots/PAN/Links_Age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/Links_Age.png -------------------------------------------------------------------------------- /docs/plots/PAN/Links_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/Links_Gender.png -------------------------------------------------------------------------------- /docs/plots/PAN/NER_Age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/NER_Age.png -------------------------------------------------------------------------------- /docs/plots/PAN/NER_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/NER_Gender.png -------------------------------------------------------------------------------- /docs/plots/PAN/POS_Age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/POS_Age.png -------------------------------------------------------------------------------- /docs/plots/PAN/POS_CDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/POS_CDF.png -------------------------------------------------------------------------------- /docs/plots/PAN/POS_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/POS_Gender.png -------------------------------------------------------------------------------- /docs/plots/PAN/Punctuation CDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/Punctuation CDF.png -------------------------------------------------------------------------------- /docs/plots/PAN/Punctuation_Age_CDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/Punctuation_Age_CDF.png -------------------------------------------------------------------------------- /docs/plots/PAN/Punctuation_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/Punctuation_Gender.png -------------------------------------------------------------------------------- /docs/plots/PAN/Readability_Scores_by_Age_Groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/Readability_Scores_by_Age_Groups.png -------------------------------------------------------------------------------- /docs/plots/PAN/Readability_Scores_by_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/Readability_Scores_by_Gender.png -------------------------------------------------------------------------------- /docs/plots/PAN/SentenceLength_Age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/SentenceLength_Age.png -------------------------------------------------------------------------------- /docs/plots/PAN/SentenceLength_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/PAN/SentenceLength_Gender.png -------------------------------------------------------------------------------- /docs/plots/koppel/Discourse_Age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/Discourse_Age.png -------------------------------------------------------------------------------- /docs/plots/koppel/Discourse_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/Discourse_Gender.png -------------------------------------------------------------------------------- /docs/plots/koppel/Links_Age2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/Links_Age2.png -------------------------------------------------------------------------------- /docs/plots/koppel/Links_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/Links_Gender.png -------------------------------------------------------------------------------- /docs/plots/koppel/NER_Age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/NER_Age.png -------------------------------------------------------------------------------- /docs/plots/koppel/NER_Age2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/NER_Age2.png -------------------------------------------------------------------------------- /docs/plots/koppel/NER_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/NER_Gender.png -------------------------------------------------------------------------------- /docs/plots/koppel/Non-worderrors_Age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/Non-worderrors_Age.png -------------------------------------------------------------------------------- /docs/plots/koppel/Non-worderrors_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/Non-worderrors_Gender.png -------------------------------------------------------------------------------- /docs/plots/koppel/POS_Age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/POS_Age.png -------------------------------------------------------------------------------- /docs/plots/koppel/POS_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/POS_Gender.png -------------------------------------------------------------------------------- /docs/plots/koppel/SentenceLength_Age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/SentenceLength_Age.png -------------------------------------------------------------------------------- /docs/plots/koppel/SentenceLength_Age2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/SentenceLength_Age2.png -------------------------------------------------------------------------------- /docs/plots/koppel/age_characterflooding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/age_characterflooding.png -------------------------------------------------------------------------------- /docs/plots/koppel/age_numfact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/age_numfact.png -------------------------------------------------------------------------------- /docs/plots/koppel/age_numopinion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/age_numopinion.png -------------------------------------------------------------------------------- /docs/plots/koppel/age_opinionscore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/age_opinionscore.png -------------------------------------------------------------------------------- /docs/plots/koppel/gender_characterflooding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/gender_characterflooding.png -------------------------------------------------------------------------------- /docs/plots/koppel/gender_numfact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/gender_numfact.png -------------------------------------------------------------------------------- /docs/plots/koppel/gender_numopinion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/gender_numopinion.png -------------------------------------------------------------------------------- /docs/plots/koppel/gender_opinionscore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/gender_opinionscore.png -------------------------------------------------------------------------------- /docs/plots/koppel/sentenceLength.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/sentenceLength.png -------------------------------------------------------------------------------- /docs/plots/koppel/timereference_Age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/timereference_Age.png -------------------------------------------------------------------------------- /docs/plots/koppel/timereference_Gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/plots/koppel/timereference_Gender.png -------------------------------------------------------------------------------- /docs/report/author-profiling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/report/author-profiling.pdf -------------------------------------------------------------------------------- /docs/report/author-profiling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/report/author-profiling.tex -------------------------------------------------------------------------------- /docs/report/koppel: -------------------------------------------------------------------------------- 1 | ../plots/koppel/ -------------------------------------------------------------------------------- /docs/report/pan: -------------------------------------------------------------------------------- 1 | ../plots/PAN/ -------------------------------------------------------------------------------- /docs/report/sig-alternate.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/report/sig-alternate.cls -------------------------------------------------------------------------------- /docs/report/sigproc.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/docs/report/sigproc.bib -------------------------------------------------------------------------------- /download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/download_data.sh -------------------------------------------------------------------------------- /src/Koppeldata/code/XMLParser_Koppel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/Koppeldata/code/XMLParser_Koppel.py -------------------------------------------------------------------------------- /src/Koppeldata/code/authoropinion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/Koppeldata/code/authoropinion.py -------------------------------------------------------------------------------- /src/Koppeldata/code/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/Koppeldata/code/plot.py -------------------------------------------------------------------------------- /src/Koppeldata/json data/age_wise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/Koppeldata/json data/age_wise.json -------------------------------------------------------------------------------- /src/Koppeldata/json data/character_flooding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/Koppeldata/json data/character_flooding.json -------------------------------------------------------------------------------- /src/Koppeldata/json data/gender_wise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/Koppeldata/json data/gender_wise.json -------------------------------------------------------------------------------- /src/Koppeldata/json data/opinionfact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/Koppeldata/json data/opinionfact.json -------------------------------------------------------------------------------- /src/Koppeldata/json data/opinionscore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/Koppeldata/json data/opinionscore.json -------------------------------------------------------------------------------- /src/PANdata/StructuredData/ANOVA_result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/ANOVA_result.csv -------------------------------------------------------------------------------- /src/PANdata/StructuredData/Links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/Links.csv -------------------------------------------------------------------------------- /src/PANdata/StructuredData/Links_ANOVA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/Links_ANOVA.csv -------------------------------------------------------------------------------- /src/PANdata/StructuredData/NER.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/NER.csv -------------------------------------------------------------------------------- /src/PANdata/StructuredData/NER_ANOVA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/NER_ANOVA.csv -------------------------------------------------------------------------------- /src/PANdata/StructuredData/POS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/POS.csv -------------------------------------------------------------------------------- /src/PANdata/StructuredData/POS_ANOVA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/POS_ANOVA.csv -------------------------------------------------------------------------------- /src/PANdata/StructuredData/POStags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/POStags.txt -------------------------------------------------------------------------------- /src/PANdata/StructuredData/Punctuation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/Punctuation.csv -------------------------------------------------------------------------------- /src/PANdata/StructuredData/Punctuation_ANOVA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/Punctuation_ANOVA.csv -------------------------------------------------------------------------------- /src/PANdata/StructuredData/SentenceLength.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/SentenceLength.csv -------------------------------------------------------------------------------- /src/PANdata/StructuredData/sentenceLength_ANOVA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/sentenceLength_ANOVA.csv -------------------------------------------------------------------------------- /src/PANdata/StructuredData/truth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/StructuredData/truth.txt -------------------------------------------------------------------------------- /src/PANdata/codes/NER_tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/NER_tagger.py -------------------------------------------------------------------------------- /src/PANdata/codes/POS_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/POS_distribution.py -------------------------------------------------------------------------------- /src/PANdata/codes/featureValidation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/featureValidation.py -------------------------------------------------------------------------------- /src/PANdata/codes/html_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/html_links.py -------------------------------------------------------------------------------- /src/PANdata/codes/links_ANOVA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/links_ANOVA.py -------------------------------------------------------------------------------- /src/PANdata/codes/ner_ANOVA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/ner_ANOVA.py -------------------------------------------------------------------------------- /src/PANdata/codes/pos_ANOVA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/pos_ANOVA.py -------------------------------------------------------------------------------- /src/PANdata/codes/pos_tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/pos_tagging.py -------------------------------------------------------------------------------- /src/PANdata/codes/punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/punctuation.py -------------------------------------------------------------------------------- /src/PANdata/codes/punctuation_ANOVA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/punctuation_ANOVA.py -------------------------------------------------------------------------------- /src/PANdata/codes/sentence_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/sentence_length.py -------------------------------------------------------------------------------- /src/PANdata/codes/sentence_length_ANOVA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/sentence_length_ANOVA.py -------------------------------------------------------------------------------- /src/PANdata/codes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/codes/utils.py -------------------------------------------------------------------------------- /src/PANdata/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/plot.py -------------------------------------------------------------------------------- /src/PANdata/plots/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/PANdata/plots/plot.py -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/README.md -------------------------------------------------------------------------------- /src/Topics/topics_mean_stdev.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/Topics/topics_mean_stdev.csv -------------------------------------------------------------------------------- /src/Topics/topics_mean_stdev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/Topics/topics_mean_stdev.py -------------------------------------------------------------------------------- /src/XMLParser_Koppel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/XMLParser_Koppel.py -------------------------------------------------------------------------------- /src/combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/combine.py -------------------------------------------------------------------------------- /src/dl/dta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/dl/dta.py -------------------------------------------------------------------------------- /src/dl/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/dl/parse.py -------------------------------------------------------------------------------- /src/dl/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/dl/run.py -------------------------------------------------------------------------------- /src/dl/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/dl/train.py -------------------------------------------------------------------------------- /src/feature/NER_tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/NER_tagger.py -------------------------------------------------------------------------------- /src/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/README.md -------------------------------------------------------------------------------- /src/feature/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /src/feature/anova/links_ANOVA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/anova/links_ANOVA.py -------------------------------------------------------------------------------- /src/feature/anova/ner_ANOVA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/anova/ner_ANOVA.py -------------------------------------------------------------------------------- /src/feature/anova/pos_ANOVA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/anova/pos_ANOVA.py -------------------------------------------------------------------------------- /src/feature/anova/punctuation_ANOVA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/anova/punctuation_ANOVA.py -------------------------------------------------------------------------------- /src/feature/anova/sentence_length_ANOVA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/anova/sentence_length_ANOVA.py -------------------------------------------------------------------------------- /src/feature/av_readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/av_readability.py -------------------------------------------------------------------------------- /src/feature/config.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/config.py.template -------------------------------------------------------------------------------- /src/feature/countQuote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/countQuote.py -------------------------------------------------------------------------------- /src/feature/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/extract.py -------------------------------------------------------------------------------- /src/feature/html_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/html_links.py -------------------------------------------------------------------------------- /src/feature/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/main.py -------------------------------------------------------------------------------- /src/feature/pos_tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/pos_tagging.py -------------------------------------------------------------------------------- /src/feature/punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/punctuation.py -------------------------------------------------------------------------------- /src/feature/readability/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/readability/LICENSE.txt -------------------------------------------------------------------------------- /src/feature/readability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/readability/README.md -------------------------------------------------------------------------------- /src/feature/readability/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /src/feature/readability/readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/readability/readability.py -------------------------------------------------------------------------------- /src/feature/readability/syllables_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/readability/syllables_en.py -------------------------------------------------------------------------------- /src/feature/readability/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/readability/utils.py -------------------------------------------------------------------------------- /src/feature/sentence_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/sentence_length.py -------------------------------------------------------------------------------- /src/feature/topics_mean_stdev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/topics_mean_stdev.py -------------------------------------------------------------------------------- /src/feature/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/feature/utils.py -------------------------------------------------------------------------------- /src/input_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/input_01.txt -------------------------------------------------------------------------------- /src/koppeldata/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/koppeldata/plot.py -------------------------------------------------------------------------------- /src/normalizedCSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/normalizedCSV.py -------------------------------------------------------------------------------- /src/parse/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/parse/config.json -------------------------------------------------------------------------------- /src/parse/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/parse/doc.py -------------------------------------------------------------------------------- /src/parse/truth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/parse/truth.py -------------------------------------------------------------------------------- /src/posTagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/posTagging.py -------------------------------------------------------------------------------- /src/quotes/countQuote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/quotes/countQuote.py -------------------------------------------------------------------------------- /src/quotes/countQuote.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/quotes/countQuote.py~ -------------------------------------------------------------------------------- /src/quotes/plotQuotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/quotes/plotQuotes.py -------------------------------------------------------------------------------- /src/quotes/quote.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/quotes/quote.csv -------------------------------------------------------------------------------- /src/readability/PANreadability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/readability/PANreadability.py -------------------------------------------------------------------------------- /src/readability/PANreadibility.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/readability/PANreadibility.csv -------------------------------------------------------------------------------- /src/readability/plotReadability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/readability/plotReadability.py -------------------------------------------------------------------------------- /src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseempatni/author-profiling/HEAD/src/test.py --------------------------------------------------------------------------------