Initial Commit
This commit is contained in:
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
.devcontainer/
|
||||||
|
data/
|
||||||
|
.DS_Store
|
||||||
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
FROM ubuntu:20.04
|
||||||
|
ADD requirements.txt /requirements.txt
|
||||||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get install ffmpeg libsm6 libxext6 git -y
|
||||||
|
RUN apt-get install -y libglib2.0-0
|
||||||
|
RUN apt-get -y install python3-pip
|
||||||
|
RUN pip install -r /requirements.txt
|
||||||
4
requirements.txt
Normal file
4
requirements.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
torch
|
||||||
|
torchvision
|
||||||
|
pandas
|
||||||
|
mediapipe
|
||||||
Reference in New Issue
Block a user