add advanced training

This commit is contained in:
MasterPhooey
2025-01-04 21:18:31 -06:00
committed by GitHub
parent 9c4a86559a
commit 8dcc55e926

View File

@@ -51,8 +51,9 @@ RUN python3.10 -m pip install --no-cache-dir numpy==1.26.4
# Create a data directory for external mapping # Create a data directory for external mapping
RUN mkdir -p /data RUN mkdir -p /data
# Copy the notebook to a fallback location in the container # Copy the notebooks to a fallback location in the container
ADD https://raw.githubusercontent.com/MasterPhooey/MicroWakeWord-Trainer-Docker/refs/heads/main/basic_training_notebook.ipynb /root/basic_training_notebook.ipynb ADD https://raw.githubusercontent.com/MasterPhooey/MicroWakeWord-Trainer-Docker/refs/heads/main/basic_training_notebook.ipynb /root/basic_training_notebook.ipynb
ADD https://raw.githubusercontent.com/MasterPhooey/MicroWakeWord-Trainer-Docker/refs/heads/main/advanced_training_notebook.ipynb /root/advanced_training_notebook.ipynb
# Add the startup script from GitHub # Add the startup script from GitHub
ADD https://raw.githubusercontent.com/MasterPhooey/MicroWakeWord-Trainer-Docker/refs/heads/main/startup.sh /usr/local/bin/startup.sh ADD https://raw.githubusercontent.com/MasterPhooey/MicroWakeWord-Trainer-Docker/refs/heads/main/startup.sh /usr/local/bin/startup.sh
@@ -65,4 +66,4 @@ WORKDIR /data
EXPOSE 8888 EXPOSE 8888
# Run the startup script and start Jupyter Notebook # Run the startup script and start Jupyter Notebook
CMD ["/bin/bash", "-c", "/usr/local/bin/startup.sh && jupyter notebook --ip=0.0.0.0 --no-browser --allow-root --NotebookApp.token='' --notebook-dir=/data"] CMD ["/bin/bash", "-c", "/usr/local/bin/startup.sh && jupyter notebook --ip=0.0.0.0 --no-browser --allow-root --NotebookApp.token='' --notebook-dir=/data"]