├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── CONTRIBUTING.md ├── IMDB_text_classification.ipynb ├── LICENSE ├── NLP_tasks_with_Transformers.ipynb ├── NOTICE ├── README.md ├── Text_classification_with_BERT_Challenge_1_NLP_model_size.ipynb ├── Text_classification_with_BERT_Solution_1_NLP_model_size.ipynb ├── Text_classification_with_BERT_tokenizers.ipynb └── Transformers_Text_classification_with_BERT_bias.ipynb /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /IMDB_text_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/IMDB_text_classification.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/LICENSE -------------------------------------------------------------------------------- /NLP_tasks_with_Transformers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/NLP_tasks_with_Transformers.ipynb -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/README.md -------------------------------------------------------------------------------- /Text_classification_with_BERT_Challenge_1_NLP_model_size.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/Text_classification_with_BERT_Challenge_1_NLP_model_size.ipynb -------------------------------------------------------------------------------- /Text_classification_with_BERT_Solution_1_NLP_model_size.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/Text_classification_with_BERT_Solution_1_NLP_model_size.ipynb -------------------------------------------------------------------------------- /Text_classification_with_BERT_tokenizers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/Text_classification_with_BERT_tokenizers.ipynb -------------------------------------------------------------------------------- /Transformers_Text_classification_with_BERT_bias.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/transformers-text-classification-for-nlp-using-bert-2478096/HEAD/Transformers_Text_classification_with_BERT_bias.ipynb --------------------------------------------------------------------------------