Re: perl for machine learning

2017-04-14 Thread Jovan Trujillo
Hi community tech, You mentioned MXNet has not wrapper in Perl, but I see it in CPAN and am trying to build it right now. Is it just not working for you? Thanks, Jovan On Mon, Feb 13, 2017 at 3:43 AM, community tech wrote: > I tried to search "random forest" on CPAN but got no good luck. > h

Re: Regex for matching files that don't have type extensions

2016-11-05 Thread Jovan Trujillo
t; >> Hi Jovan. \w is a presidents character classes that is equivalent to >> [A-Za-z0-9_], so this works also: >> m/^\w+$/ >> >> On Sat, Nov 5, 2016, 10:24 AM Jovan Trujillo >> wrote: >> >> Ah, I figured it out. >> m/^[A-Za-z0-9_]+$/ works bec

Re: Regex for matching files that don't have type extensions

2016-11-05 Thread Jovan Trujillo
Ah, I figured it out. m/^[A-Za-z0-9_]+$/ works because it will only match if the entire string follows the pattern. Thanks! On Sat, Nov 5, 2016 at 10:14 AM, Jovan Trujillo wrote: > Hi All, > I thought I could use a simple regex to match files like this: > > 1207003PE

Regex for matching files that don't have type extensions

2016-11-05 Thread Jovan Trujillo
Hi All, I thought I could use a simple regex to match files like this: 1207003PE_GM_09TNPLM2 and ignore files with extensions like this: 1207003PE_GM_09TNPLM2.csv I originally though m/[A-Za-z0-9\_]+/ would work, but it captures both strings. So then I tried m/[A-Za-z0-9\_]+(?!\.)/ but

Re: Perl scope like cscope

2013-04-25 Thread Jovan Trujillo
I was just browsing through ack the other day. Have you checked that out? Ack: http://beyondgrep.com/ - Jovan On Thu, Apr 25, 2013 at 8:02 AM, kavita kulkarni wrote: > Hi, > This could be naive. > I use perl on linux and find it difficult to navigate quickly through the > scripts. > I wonder i