├── LICENSE ├── README.md ├── labeling_functions ├── generators │ ├── .gitkeep │ └── crowdworker.py ├── primitives │ └── .gitkeep └── templates │ └── keywords.py ├── slicing_functions ├── generators │ └── .gitkeep ├── primitives │ └── .gitkeep └── templates │ └── .gitkeep └── transformation_functions ├── generators └── .gitkeep ├── primitives └── .gitkeep └── templates └── .gitkeep /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snorkel-team/snorkel-zoo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snorkel-team/snorkel-zoo/HEAD/README.md -------------------------------------------------------------------------------- /labeling_functions/generators/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labeling_functions/generators/crowdworker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snorkel-team/snorkel-zoo/HEAD/labeling_functions/generators/crowdworker.py -------------------------------------------------------------------------------- /labeling_functions/primitives/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labeling_functions/templates/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snorkel-team/snorkel-zoo/HEAD/labeling_functions/templates/keywords.py -------------------------------------------------------------------------------- /slicing_functions/generators/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slicing_functions/primitives/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slicing_functions/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transformation_functions/generators/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transformation_functions/primitives/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transformation_functions/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------