Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #25997 > unrolled thread
| Started by | subhabangalore@gmail.com |
|---|---|
| First post | 2012-07-24 08:39 -0700 |
| Last post | 2012-07-26 07:47 -0700 |
| Articles | 5 — 2 participants |
Back to article view | Back to comp.lang.python
HMM and CRF Package subhabangalore@gmail.com - 2012-07-24 08:39 -0700
Re: HMM and CRF Package subhabangalore@gmail.com - 2012-07-25 08:58 -0700
Re: HMM and CRF Package Terry Reedy <tjreedy@udel.edu> - 2012-07-25 15:58 -0400
Re: HMM and CRF Package subhabangalore@gmail.com - 2012-07-26 07:47 -0700
Re: HMM and CRF Package subhabangalore@gmail.com - 2012-07-26 07:47 -0700
| From | subhabangalore@gmail.com |
|---|---|
| Date | 2012-07-24 08:39 -0700 |
| Subject | HMM and CRF Package |
| Message-ID | <d1360cad-3612-48d8-bd42-071fc97a9835@googlegroups.com> |
Dear Group, I was looking for the following solutions. (i) a Python Hidden Markov Model(HMM) library. (ii)a Python Conditional Random Field(CRF) library. (iii) I am using Python 3.2.1 on Windows 7(64 bit) and also like to get a NLTK version. (iv) I may use unicode character as input. If any one may kindly help me out. Best Regards, Subhabrata Banerjee. Gurgaon. India.
[toc] | [next] | [standalone]
| From | subhabangalore@gmail.com |
|---|---|
| Date | 2012-07-25 08:58 -0700 |
| Message-ID | <c9442f98-1073-4e92-83bd-a5ffe674e950@googlegroups.com> |
| In reply to | #25997 |
On Tuesday, July 24, 2012 9:09:02 PM UTC+5:30, (unknown) wrote: > Dear Group, > > I was looking for the following solutions. > > (i) a Python Hidden Markov Model(HMM) library. > (ii)a Python Conditional Random Field(CRF) library. > (iii) I am using Python 3.2.1 on Windows 7(64 bit) and also like to get a NLTK version. > (iv) I may use unicode character as input. > > If any one may kindly help me out. > > Best Regards, > Subhabrata Banerjee. > Gurgaon. > India. Dear Group, I worked out a solution. As most of the libraries give so many bindings and conditions best way is to make it. Not very tough, I made earlier, but as some files were lost so was thinking instead of a remake if ready versions work. Or may look change from Python 3 to previous version so when 3 will be supported solution. But can I install both Python 3 and Python2.x or call 2.x from 3.x? Regards, Subhabrata.
[toc] | [prev] | [next] | [standalone]
| From | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| Date | 2012-07-25 15:58 -0400 |
| Message-ID | <mailman.2582.1343246364.4697.python-list@python.org> |
| In reply to | #26044 |
On 7/25/2012 11:58 AM, subhabangalore@gmail.com wrote: > As most of the libraries give so many bindings and conditions best way is to make it. Not very tough, I made earlier, but as some files were lost so was thinking instead of a remake if ready versions work. Or may look change from Python 3 to previous version so when 3 will be supported solution. But can I install both Python 3 and Python2.x or call 2.x from 3.x? You can have multiple versions of Python installed. Just be careful on *nix to use altinstall so as to not disturb the system install used by the system. Pythonx.y can only use code that works with x.y ;=). However, any Python process can use any other program via the subprocess module. You just have to work out the data transfer. -- Terry Jan Reedy
[toc] | [prev] | [next] | [standalone]
| From | subhabangalore@gmail.com |
|---|---|
| Date | 2012-07-26 07:47 -0700 |
| Message-ID | <mailman.2612.1343314047.4697.python-list@python.org> |
| In reply to | #26050 |
On Thursday, July 26, 2012 1:28:50 AM UTC+5:30, Terry Reedy wrote: > On 7/25/2012 11:58 AM, subhabangalore@gmail.com wrote: > > As most of the libraries give so many bindings and conditions best way > is to make it. Not very tough, I made earlier, but as some files were > lost so was thinking instead of a remake if ready versions work. Or may > look change from Python 3 to previous version so when 3 will be > supported solution. But can I install both Python 3 and Python2.x or > call 2.x from 3.x? > > You can have multiple versions of Python installed. Just be careful on > *nix to use altinstall so as to not disturb the system install used by > the system. > > Pythonx.y can only use code that works with x.y ;=). However, any Python > process can use any other program via the subprocess module. You just > have to work out the data transfer. > > -- > Terry Jan Reedy Dear Terry, Thanks for your reply. I had downloaded it too, but going tools I felt it is better to repair or rebuild them, as most of them have many bindings. And making is not a big effort when numpy,scipy,matplotlib are there. Regards, Subhabrata Banerjee.
[toc] | [prev] | [next] | [standalone]
| From | subhabangalore@gmail.com |
|---|---|
| Date | 2012-07-26 07:47 -0700 |
| Message-ID | <a04dde61-1e78-42b2-a062-4f512b4d2bc9@googlegroups.com> |
| In reply to | #26050 |
On Thursday, July 26, 2012 1:28:50 AM UTC+5:30, Terry Reedy wrote: > On 7/25/2012 11:58 AM, subhabangalore@gmail.com wrote: > > As most of the libraries give so many bindings and conditions best way > is to make it. Not very tough, I made earlier, but as some files were > lost so was thinking instead of a remake if ready versions work. Or may > look change from Python 3 to previous version so when 3 will be > supported solution. But can I install both Python 3 and Python2.x or > call 2.x from 3.x? > > You can have multiple versions of Python installed. Just be careful on > *nix to use altinstall so as to not disturb the system install used by > the system. > > Pythonx.y can only use code that works with x.y ;=). However, any Python > process can use any other program via the subprocess module. You just > have to work out the data transfer. > > -- > Terry Jan Reedy Dear Terry, Thanks for your reply. I had downloaded it too, but going tools I felt it is better to repair or rebuild them, as most of them have many bindings. And making is not a big effort when numpy,scipy,matplotlib are there. Regards, Subhabrata Banerjee.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web