remove-dev-models

#1
by lcolonn - opened
.gitattributes CHANGED
@@ -34,5 +34,3 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  mlipaudit-0.1.0-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
- mlipaudit-0.0.1a0-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
38
- mlipaudit-0.1.1-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
 
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  mlipaudit-0.1.0-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
 
 
Dockerfile CHANGED
@@ -8,9 +8,9 @@ RUN apt-get update && apt-get install -y \
8
  git \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
- COPY mlipaudit-0.1.1-py3-none-any.whl ./
12
 
13
- RUN pip3 install ./mlipaudit-0.1.1-py3-none-any.whl
14
 
15
  EXPOSE 8501
16
 
 
8
  git \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
+ COPY mlipaudit-0.1.0-py3-none-any.whl ./
12
 
13
+ RUN pip3 install ./mlipaudit-0.1.0-py3-none-any.whl git+https://github.com/jax-md/jax-md.git@main
14
 
15
  EXPOSE 8501
16
 
README.md CHANGED
@@ -11,7 +11,9 @@ pinned: false
11
  short_description: Streamlit template space
12
  ---
13
 
14
- # Welcome to the MLIPAudit Leaderboard
15
 
16
- Check out MLIPAudit [here](https://github.com/instadeepai/mlipaudit).
17
 
 
 
 
11
  short_description: Streamlit template space
12
  ---
13
 
14
+ # Welcome to Streamlit!
15
 
16
+ Edit `/src/streamlit_app.py` to customize this app to your heart's desire. :heart:
17
 
18
+ If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
19
+ forums](https://discuss.streamlit.io).
mlipaudit-0.1.1-py3-none-any.whl → mlipaudit-0.1.0-py3-none-any.whl RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:091be6b5d23c96bf36c447007b41ab07b997f96fa3e0749a06362e9c1953f0c7
3
- size 6030453
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8e42747952485982f90fd5f72faa385378826cf7d0649cd866ecf6aa975e429
3
+ size 6009307
run_app.sh CHANGED
@@ -10,9 +10,6 @@ mkdir -p ${HF_DATASET_LOCAL_PATH}
10
 
11
  hf download ${HF_DATASET_REPO} --local-dir ${HF_DATASET_LOCAL_PATH} --repo-type dataset
12
 
13
- # Find all regular files (-type f) in the downloaded directory and its subdirectories, and delete them.
14
- find "${HF_DATASET_LOCAL_PATH}" -maxdepth 1 -type f -delete
15
-
16
  if [ $? -eq 0 ]; then
17
  echo "Dataset downloaded successfully!"
18
  else
@@ -21,5 +18,5 @@ else
21
  fi
22
 
23
  echo "Starting Streamlit app..."
24
- exec mlipaudit gui /app/results --is-public
25
 
 
10
 
11
  hf download ${HF_DATASET_REPO} --local-dir ${HF_DATASET_LOCAL_PATH} --repo-type dataset
12
 
 
 
 
13
  if [ $? -eq 0 ]; then
14
  echo "Dataset downloaded successfully!"
15
  else
 
18
  fi
19
 
20
  echo "Starting Streamlit app..."
21
+ exec mlipauditapp /app/results __hf
22