Joel Barry

Results 6 issues of Joel Barry

``` $ cat environment-buggy.yml name: kgkt-spacy-conflict channels: - conda-forge - defaults dependencies: - python==3.9.13 - pip==23.0.1 - pip: - spacy==3.5.3 - kgtk==1.5.3 $ conda env create -f environment-buggy.yml ... INFO:...

``` $ mkdir tmp $ cd tmp $ wget -P data/imdb https://github.com/usc-isi-i2/kgtk-notebooks/raw/main/datasets/imdb/IMDB.csv.gz $ zcat IMDB.csv.gz | head -2 imdb_title_id,title,original_title,year,date_published,genre,duration,country,language,director,writer,production_company,actors,description,avg_vote,votes,budget,usa_gross_income,worlwide_gross_income,metascore,reviews_from_users,reviews_from_critics tt0000009,Miss Jerry,Miss Jerry,1894,1894-10-09,Romance,45,USA,None,Alexander Black,Alexander Black,Alexander Black Photoplays,"Blanche Bayliss, William Courtenay, Chauncey...

After installing the current kgtk and working around an issue with `sh` (see https://github.com/usc-isi-i2/kgtk/issues/696), I am still seeing an issue, this time with sqlite3. I did not see this issue...

`SortVocab` is removing the sentence end marker "\" from the index 0 in the vocab. I *think* the intent of the original word2vec code is that newlines are replaced with...

lqt was originally supposed to be just a query tool - no writes. But occasionally, I find myself needing to insert a document. Last time I tried to use Luke,...

enhancement

This works fine: ``` $ ./lqt -i ~/.m2/repository/bt/coref/tac-2012-kb-seeded-index-22/LOCATION_ORGANIZATION_PERSON \ -q bad-field-name:value Exception in thread "main" java.lang.RuntimeException: Invalid field names: [bad-field-name] at com.basistech.gcoref.utils.LuceneQueryTool.runQuery(LuceneQueryTool.java:313) at com.basistech.gcoref.utils.LuceneQueryTool.run(LuceneQueryTool.java:245) at com.basistech.gcoref.utils.LuceneQueryTool.main(LuceneQueryTool.java:597) ``` But this does...

bug