mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-01 09:27:43 +00:00
96424bd1ff
* fuse all code into one commit * remove container auto * change remove method * add kaggle env start * change kaggle api * change structure * add crawler * add requirements * refeact the code * delete mistaken codes * merge docker settings and crawler * add chrome install README for crawler usage * Connect scen with Kaggle to download data * Reformat some files to pass CI. * fix some ci errors * fix a ci error * fix a ci error --------- Co-authored-by: Bowen Xian <xianbowen@outlook.com>
26 lines
746 B
Docker
26 lines
746 B
Docker
FROM pytorch/pytorch:latest
|
|
# For GPU support, please choose the proper tag from https://hub.docker.com/r/pytorch/pytorch/tags
|
|
|
|
RUN apt-get clean && apt-get update && apt-get install -y \
|
|
curl \
|
|
vim \
|
|
git \
|
|
build-essential \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /workspace
|
|
|
|
RUN python -m pip install numpy
|
|
RUN python -m pip install --upgrade cython
|
|
# RUN python -m pip install -e .
|
|
|
|
RUN python -m pip install pandas
|
|
# RUN pip install pyg_lib torch_scatter torch_sparse torch_cluster -f https://data.pyg.org/whl/torch-2.3.0%2Bcu121.html
|
|
RUN pip install torch_geometric
|
|
RUN pip install ogb
|
|
RUN pip install networkx
|
|
RUN pip install scikit-learn
|
|
RUN pip install catboost
|
|
RUN pip install xgboost
|
|
RUN pip install sparse
|