Created
January 24, 2022 11:18
-
-
Save ShawonAshraf/604ffc87d4b44f489673bd5872d48443 to your computer and use it in GitHub Desktop.
sample I/O for set8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#input | |
['S', | |
['NP-SBJ', | |
['NP', | |
['DT', 'The'], | |
['NN', 'cat'] | |
] | |
], | |
['VP', | |
['VB', 'chases'], | |
['NP-PRD', | |
['NP', | |
['DT', 'the'], | |
['NN', 'mouse'] | |
] | |
] | |
], | |
['.', '.'] | |
] | |
# output | |
(S (NP-SBJ (NP (DT The)(NN cat)))(VP (VB chases)(NP-PRD (NP (DT the)(NN mouse))))(. .)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment