https://github.com/lspector/Clojush
Raw File
Tip revision: 6a4c0f85276c34ac9220b6cc66fc772f04240eef authored by Lee Spector on 27 June 2017, 17:07:58 UTC
Partially fixed grain size of children with dummy parents.
Tip revision: 6a4c0f8
Dockerfile
FROM clojure
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY project.clj /usr/src/app/
RUN lein deps
COPY . /usr/src/app
CMD lein run clojush.problems.demos.simple-regression
back to top