PolMine / bignlp

Tools to process large corpora line-by-line and in parallel mode
1 stars 1 forks source link

`corenlp_parse_conll()` throws warning #41

Open ablaette opened 1 year ago

ablaette commented 1 year ago

This is due to a call to file.exists() to check whether incoming object is a file. But this may result in a warning.

conll_str <- "1\t„\t_\tPUNCT\tO\t_\t_\n2\tDie\t_\tDET\tO\t_\t_\n3\tweiteren\t_\tADJ\tO\t_\t_\n4\tbürokratischen\t_\tADJ\tO\t_\t_\n5\tHürden\t_\tNOUN\tO\t_\t_\n6\t,\t_\tPUNCT\tO\t_\t_\n7\tdie\t_\tPRON\tO\t_\t_\n8\tder\t_\tDET\tO\t_\t_\n9\tGesetzesentwurf\t_\tNOUN\tO\t_\t_\n10\tdes\t_\tDET\tO\t_\t_\n11\tBundesinnenministers\t_\tNOUN\tO\t_\t_\n12\tmit\t_\tADP\tO\t_\t_\n13\tsich\t_\tPRON\tO\t_\t_\n14\tbringen\t_\tVERB\tO\t_\t_\n15\twürde\t_\tAUX\tO\t_\t_\n16\t,\t_\tPUNCT\tO\t_\t_\n17\twären\t_\tAUX\tO\t_\t_\n18\tfür\t_\tADP\tO\t_\t_\n19\tdie\t_\tDET\tO\t_\t_\n20\tbetroffenen\t_\tADJ\tO\t_\t_\n21\tJugendlichen\t_\tNOUN\tO\t_\t_\n22\tunzumutbar\t_\tADJ\tO\t_\t_\n23\t\"\t_\tPUNCT\tO\t_\t_\n24\t,\t_\tPUNCT\tO\t_\t_\n25\tso\t_\tADV\tO\t_\t_\n26\tKolat\t_\tPROPN\tPERSON\t_\t_\n27\tweiter\t_\tADJ\tO\t_\t_\n28\t.\t_\tPUNCT\tO\t_\t_\n\n1\tDer\t_\tDET\tO\t_\t_\n2\tEntwurf\t_\tNOUN\tO\t_\t_\n3\tdes\t_\tDET\tO\t_\t_\n4\tBundesinnenministers\t_\tNOUN\tO\t_\t_\n5\tsei\t_\tAUX\tO\t_\t_\n6\tnach\t_\tADP\tO\t_\t_\n7\tMeinung\t_\tNOUN\tO\t_\t_\n8\tvieler\t_\tPRON\tO\t_\t_\n9\tJuristen\t_\tNOUN\tO\t_\t_\n10\tauch\t_\tADV\tO\t_\t_\n11\teuroparechtswidrig\t_\tADJ\tO\t_\t_\n12\tund\t_\tCCONJ\tO\t_\t_\n13\terhöhe\t_\tADJ\tO\t_\t_\n14\tsogar\t_\tADV\tO\t_\t_\n15\tden\t_\tDET\tO\t_\t_\n16\tVerwaltungsaufwand\t_\tNOUN\tO\t_\t_\n17\t.\t_\tPUNCT\tO\t_\t_\n\n"

file.exists(con_str)

Solution: Move to check for file ending *.conll.