The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
409 views

processing strings of text for neural network input

I understand that ANN input must be normalized, standardized, etc. Leaving the peculiarities and models of various ANN's aside, how can I preprocess UTF-8 encoded text within the range of {0,1} or ...
0
votes
2answers
2k views

R: Standardize using mean and sd functions

I'm trying to do a simple transformation. I've used the following code and it worked fine: data_stdz <- transform(data_header, z.v1 = v1+2) But, I can't get the following code to work: ...
7
votes
3answers
634 views

Python not a standardized language?

I stumbled upon this 'list of programming' languages and found that popular languages like Python are not standardized? Why is that, and what does 'Standardized' mean anyway?
4
votes
13answers
469 views

Should developer tools, languages, frameworks, etc. be standardized across an organization?

The organization that I currently work for seems to be heading in the direction of dictating to software developers which tools, languages, frameworks, etc. must be used. However, nobody has convinced ...
4
votes
1answer
655 views

Standardized Error Classification & Handling

I need to standardize on how I classify and handle errors/exceptions 'gracefully'. I currently use a process by which I report the errors to a function passing an error-number, severity-code, ...