beyond-jupyter
beyond-jupyter copied to clipboard
Software design principles for machine learning applications
Results
3
beyond-jupyter issues
Sort by
recently updated
recently updated
newest added
dockerfile ``` FROM continuumio/miniconda3 # setting Conda Path ENV PATH /opt/conda/bin:$PATH COPY environment.yml . RUN conda env create -f environment.yml ``` docker-compse.yml ``` version: '3.9' services: app: build: . #...
We should show consequences of the violation of "composition over inheritance", in particular sub-class explosion.
documentation