All Questions
Tagged with machine-learning functional-programming
3 questions
2
votes
1
answer
63
views
Re-write custom feature encoding function python
I have a question regarding code quality and best practices. My task - to write a feature encoding function that will encode categorical labels, boolean labels as one-hot encoding, timestamps for ...
2
votes
1
answer
166
views
User-Interactive Data Cleaning Program in Python
I'm trying to develop a program in Python that allows the user to import datasets and perform operations on them using pandas and numpy so she/he can skip writing all the preprocessing code her/...
13
votes
1
answer
2k
views
Clojure Neural Network
After reading this article about Neural Networks I was inspired to write my own implementation that allows for more than one hidden layer.
I am interested in how to make this code more idiomatic - ...