This repository serves as a foundation for projects in Data Science and Machine Learning. It includes essential tools, libraries, and configurations to streamline development and experimentation. Key components include a requirements.txt file for dependencies and a Dockerfile for setting up a Jupyter-based environment.
- Pre-configured environment for Data Science and Machine Learning.
- Docker support for consistent and isolated development.
- Dependencies listed in
requirements.txtfor easy installation. - Ready-to-use Jupyter Notebook interface.
- Build the Docker image:
docker build -t base-of-ds . - Run the container:
docker run -p 8888:8888 -v $(pwd):/home/jupyter base-of-ds - Access the Jupyter Notebook interface at
http://localhost:8888.
- Clone the repository:
git clone https://github.com/crissyro/base-of-DS.git
- Navigate to the project directory:
cd base-of-DS - Install dependencies:
pip install -r requirements.txt
This repository is structured for flexibility in Data Science workflows. Use the Jupyter Notebook interface or scripts in the repository for experimentation and analysis.
- Launch Jupyter Notebook:
jupyter notebook
- Open and run notebooks in the
notebooks/directory.
We welcome contributions to improve this repository. See CONTRIBUTING.md for guidelines.
This repository is licensed under the MIT License. See the LICENSE file for details.