├── README.md ├── args.py ├── commands ├── CFEAL_PARTIAL_CRF_CT.sh ├── ETAL_FULL_CRF_CT.sh ├── ETAL_PARTIAL_CRF_CT.sh └── SAL_CT.sh ├── dataloaders ├── __init__.py └── data_loader.py ├── eval └── conlleval.v2 ├── helper_scripts ├── CombineAnnotatedFiles.py ├── SimulateAnnotations.py ├── countLinesCONLL.py ├── pickKTokens.py ├── pickKTokensRev.py └── removeAnnotatedSents.py ├── main.py ├── models ├── __init__.py ├── decoders.py ├── encoders.py └── model_builder.py └── utils ├── features.py └── util.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/README.md -------------------------------------------------------------------------------- /args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/args.py -------------------------------------------------------------------------------- /commands/CFEAL_PARTIAL_CRF_CT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/commands/CFEAL_PARTIAL_CRF_CT.sh -------------------------------------------------------------------------------- /commands/ETAL_FULL_CRF_CT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/commands/ETAL_FULL_CRF_CT.sh -------------------------------------------------------------------------------- /commands/ETAL_PARTIAL_CRF_CT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/commands/ETAL_PARTIAL_CRF_CT.sh -------------------------------------------------------------------------------- /commands/SAL_CT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/commands/SAL_CT.sh -------------------------------------------------------------------------------- /dataloaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataloaders/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/dataloaders/data_loader.py -------------------------------------------------------------------------------- /eval/conlleval.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/eval/conlleval.v2 -------------------------------------------------------------------------------- /helper_scripts/CombineAnnotatedFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/helper_scripts/CombineAnnotatedFiles.py -------------------------------------------------------------------------------- /helper_scripts/SimulateAnnotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/helper_scripts/SimulateAnnotations.py -------------------------------------------------------------------------------- /helper_scripts/countLinesCONLL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/helper_scripts/countLinesCONLL.py -------------------------------------------------------------------------------- /helper_scripts/pickKTokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/helper_scripts/pickKTokens.py -------------------------------------------------------------------------------- /helper_scripts/pickKTokensRev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/helper_scripts/pickKTokensRev.py -------------------------------------------------------------------------------- /helper_scripts/removeAnnotatedSents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/helper_scripts/removeAnnotatedSents.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/models/decoders.py -------------------------------------------------------------------------------- /models/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/models/encoders.py -------------------------------------------------------------------------------- /models/model_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/models/model_builder.py -------------------------------------------------------------------------------- /utils/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/utils/features.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditi138/EntityTargetedActiveLearning/HEAD/utils/util.py --------------------------------------------------------------------------------