loubnabnl's picture
loubnabnl HF staff
Update README.md
3a14d4d
|
raw
history blame contribute delete
No virus
999 Bytes

CodeParrot 🦜 Dataset Cleaned and filtered (validation)

Dataset Description

A dataset of Python files from Github. It is a more filtered version of the validation split codeparrot-clean-valid of codeparrot-clean. The additional filters aim at detecting configuration and test files, as well as outlier files that are unlikely to help the model learn code. The first three filters are applied with a probability of 0.7:

  • files with a mention of "test file" or "configuration file" or similar in the first 5 lines
  • files with high occurence of the keywords "test " or "config"
  • files without a mention of the keywords def, for, while and class
  • files that use the assignment operator = less than 5 times
  • files with ratio between number of characters and number of tokens after tokenization < 1.5