You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

incremental-learning-dog-croissants-classification.Dockerfile 396 B

1234567891011121314151617
  1. FROM mindspore/mindspore-cpu:1.7.1
  2. COPY lib/requirements.txt /home
  3. # install requirements of sedna lib
  4. RUN pip install -r /home/requirements.txt
  5. RUN pip install Pillow
  6. RUN pip install numpy
  7. RUN pip install mindvision
  8. ENV PYTHONPATH "/home/lib"
  9. WORKDIR /home/work
  10. COPY lib /home/lib
  11. COPY examples/incremental_learning/dog_croissants_classification/training /home/work/
  12. ENTRYPOINT ["python"]