├── .gitignore ├── Data └── Examplefiles │ ├── fixedsplits_HN.csv │ ├── pinfo_HN.csv │ └── semantics_HN.csv ├── Extra_tutorials ├── WORCTutorialBasic_OwnFeatures.py └── WORCTutorialInference.py ├── LICENSE ├── README.md ├── WORCTutorialBasic.ipynb ├── WORCTutorialBasic.py ├── WORCTutorialSimple.ipynb ├── WORCTutorialSimple.py └── installation.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /Data/Examplefiles/fixedsplits_HN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/Data/Examplefiles/fixedsplits_HN.csv -------------------------------------------------------------------------------- /Data/Examplefiles/pinfo_HN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/Data/Examplefiles/pinfo_HN.csv -------------------------------------------------------------------------------- /Data/Examplefiles/semantics_HN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/Data/Examplefiles/semantics_HN.csv -------------------------------------------------------------------------------- /Extra_tutorials/WORCTutorialBasic_OwnFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/Extra_tutorials/WORCTutorialBasic_OwnFeatures.py -------------------------------------------------------------------------------- /Extra_tutorials/WORCTutorialInference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/Extra_tutorials/WORCTutorialInference.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/README.md -------------------------------------------------------------------------------- /WORCTutorialBasic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/WORCTutorialBasic.ipynb -------------------------------------------------------------------------------- /WORCTutorialBasic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/WORCTutorialBasic.py -------------------------------------------------------------------------------- /WORCTutorialSimple.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/WORCTutorialSimple.ipynb -------------------------------------------------------------------------------- /WORCTutorialSimple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/WORCTutorialSimple.py -------------------------------------------------------------------------------- /installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MStarmans91/WORCTutorial/HEAD/installation.sh --------------------------------------------------------------------------------