Kyle P. Johnson

Results 44 comments of Kyle P. Johnson

@gasyoun @sainimohit23 Just reaching out to let you know that a CLTK person has alerted us to the CONLL treebanks here. I don't recall them being available last I checked,...

@modassir Thanks right now the API and frontend are on the same server. I believe this will be solved by https://github.com/cltk/cltk_api/issues/10

Hi @Zoomerhimmer I am open minded about changing to to the fasttext vectors. > The 300D vec is far superior to the NLPL word2vec implementation I want to learn more...

Here's our embeddings code: https://github.com/cltk/cltk/blob/c15e0b27bab2526710408d30d5ca3879964ca17c/src/cltk/embeddings/embeddings.py Would you like to work on this @Zoomerhimmer ? Important parts of the code: 1. Import gensim: https://github.com/cltk/cltk/blob/c15e0b27bab2526710408d30d5ca3879964ca17c/src/cltk/embeddings/embeddings.py#L27 2. Maps of lang-to-w2v url: https://github.com/cltk/cltk/blob/c15e0b27bab2526710408d30d5ca3879964ca17c/src/cltk/embeddings/embeddings.py#L37 (You...

Hi @SDCLA @sjhuskey I don't have the time to help on this, but would gladly accept a working pull request that incorporates your changes. I only ask that you be...

Hi @sjhuskey I hope my radio silence doesn't come off as me not appreciating your bug reports. I truly do, but as I explained in another issues, I simply lack...

Thanks for working on this @sjhuskey . It's been 15 years since I last scanned *anything*, otherwise I would help. I trust you and @SDCLA and will accept your PR...

Are you familiar with storing results as a pickle file? https://realpython.com/lessons/using-pickle-module/ When I am processing many documents with the cltk, I try to run them one-by-one and save that doc...

Ahh, this is a new one. I can confirm that I get the same error (it comes from spacy): https://github.com/explosion/spaCy/issues/7644 ``` python >>> pickle.dumps(doc) Traceback (most recent call last): File...

Thank you for bringing this to our attention. Someone will need to dig into this. Likely, the answer will be to transform native Spacy data (regarding only morphology, I think)...