Re: [julia-users] Natural language processing in Julia

2014-08-28 Thread Earl Brown
I'm a corpus linguist who uses R for just about everything I do, but was recently disappointed when an R script took four and a half hours to create three frequency lists of single words, bigrams, and trigrams, despite using a function which calls compiled C code in one bottleneck. Curious to

Re: [julia-users] Natural language processing in Julia

2014-06-10 Thread Matías Guzmán Naranjo
I must have missed that then. El martes, 10 de junio de 2014 04:38:54 UTC+2, John Myles White escribió: There’s lots of tools for working with files without loading them in TextAnalysis.jl. — John On Jun 9, 2014, at 3:05 PM, Matías Guzmán Naranjo morte...@gmail.com javascript: wrote:

Re: [julia-users] Natural language processing in Julia

2014-06-09 Thread Milan Bouchet-Valat
Le dimanche 08 juin 2014 à 13:57 -0700, Matías Guzmán Naranjo a écrit : I am working on a library for doing corpus linguistics with Julia (out of my frustration with python). It is mostly designed for my personal needs, written in the little free time I have, and it isn't ready for others to

Re: [julia-users] Natural language processing in Julia

2014-06-09 Thread John Myles White
It would be great if somebody with experience with NLP took over leadership for JuliaText. I just can’t keep up with TextAnalysis.jl anymore. — John On Jun 9, 2014, at 3:13 AM, Milan Bouchet-Valat nalimi...@club.fr wrote: Le dimanche 08 juin 2014 à 13:57 -0700, Matías Guzmán Naranjo a écrit

Re: [julia-users] Natural language processing in Julia

2014-06-09 Thread Matías Guzmán Naranjo
I don't have too much experience in NLP, I am a corpus linguist, so CorpusTools is mainly aimed at doing corpus linguistics things (collocations, collostructions, concordances, etc.). I did see your TextAnalysis library but didn't like some of its aspects (not being able to work with files

Re: [julia-users] Natural language processing in Julia

2014-06-09 Thread Matías Guzmán Naranjo
I'll eventually add some basic POS tagging and Parser. This may take a bit of time though. For now I'm thinking of just making a python wrapper for FreeLing. El martes, 10 de junio de 2014 00:05:10 UTC+2, Matías Guzmán Naranjo escribió: I don't have too much experience in NLP, I am a corpus

Re: [julia-users] Natural language processing in Julia

2014-06-09 Thread John Myles White
There’s lots of tools for working with files without loading them in TextAnalysis.jl. — John On Jun 9, 2014, at 3:05 PM, Matías Guzmán Naranjo mortem@gmail.com wrote: I don't have too much experience in NLP, I am a corpus linguist, so CorpusTools is mainly aimed at doing corpus

Re: [julia-users] Natural language processing in Julia

2014-05-16 Thread Jonathan Malmaud
Hi Sorami, Yes, JuliaText is meant to be the repository of Julia NLP packages and I agree with you about Julia's potential in the NLP domain. There hasn't been a lot of action there since I think there aren't many people using Julia for NLP yet (although I hope that changes). Any contributions

Re: [julia-users] Natural language processing in Julia

2014-05-08 Thread theremins
Hi all, I am interested in writing Natural Language Processing (NLP) tools in Julia. My name is Sorami, I am a data scientist at BrainPad Inc. in Tokyo, Japan. I used to be a graduate student doing NLP. I am much interested in Julia, and I see its great potential as a powerful NLP / Text

Re: [julia-users] Natural language processing in Julia

2014-01-27 Thread Jonathan Malmaud
I was thinking of starting up a Julia NLP meta-project on github if there's enough interest. It could host projects like textanalysis.jl, a Julia interface to NLTK, a Julia interface to some of Stanford's NLP tools, and whatever more native solutions people put together. On Friday, October 25,

Re: [julia-users] Natural language processing in Julia

2014-01-27 Thread John Myles White
JuliaText would be great. TextAnalysis.jl really needs a lot of love to move forward. For now, I’d strongly push people towards NLTK. — John On Jan 27, 2014, at 8:29 AM, Jonathan Malmaud malm...@gmail.com wrote: I was thinking of starting up a Julia NLP meta-project on github if there's

Re: [julia-users] Natural language processing in Julia

2014-01-19 Thread Steven G. Johnson
How do you convert a Synset to a string in Python? Presumably Synset has some Python method for this? On Saturday, January 18, 2014 7:32:58 AM UTC-5, Jon Norberg wrote: Great. And how dose one get the text from pyobject to a julia string? Thanks very much

Re: [julia-users] Natural language processing in Julia

2014-01-19 Thread Jonathan Malmaud
They have a 'name' property, although I'm not sure that's what you're after. If your julia array of synsets is called 'synsets', you could do [synset[:name] for synset in synsets] On Jan 19, 2014, at 10:23 AM, Steven G. Johnson stevenj@gmail.com wrote: How do you convert a Synset to a

Re: [julia-users] Natural language processing in Julia

2014-01-19 Thread Jon Norberg
Thats great, now I am starting to be able to do what I want. Any idea how one can list all properties and methods of a pyobject

Re: [julia-users] Natural language processing in Julia

2014-01-18 Thread Jon Norberg
Great. And how dose one get the text from pyobject to a julia string? Thanks very much

Re: [julia-users] Natural language processing in Julia

2014-01-16 Thread Jon Norberg
Hi Jonathan would you by any chance have some example code to share how you work with NLTK using pycall. I wish there were more julia examples scripts available for browning and learning. Thanks,