BrightBlueCheese
commited on
Commit
•
e710bef
1
Parent(s):
a780c2f
git
Browse files- .ipynb_checkpoints/app-checkpoint.py +2 -1
- .ipynb_checkpoints/requirements-checkpoint.txt +1 -0
- app.py +2 -1
- requirements.txt +1 -0
.ipynb_checkpoints/app-checkpoint.py
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
|
2 |
import streamlit as st
|
3 |
-
import
|
4 |
|
5 |
subprocesses.run(['git', 'clone', 'https://huggingface.co/ttmn/SolLlama-mtr'])
|
|
|
6 |
|
7 |
import sys
|
8 |
import os
|
|
|
1 |
|
2 |
import streamlit as st
|
3 |
+
from git import Repo
|
4 |
|
5 |
subprocesses.run(['git', 'clone', 'https://huggingface.co/ttmn/SolLlama-mtr'])
|
6 |
+
Repo.clone_from('https://huggingface.co/ttmn/SolLlama-mtr', './')
|
7 |
|
8 |
import sys
|
9 |
import os
|
.ipynb_checkpoints/requirements-checkpoint.txt
CHANGED
@@ -10,3 +10,4 @@ pytorch-warmup
|
|
10 |
scikit-learn
|
11 |
scipy
|
12 |
seaborn
|
|
|
|
10 |
scikit-learn
|
11 |
scipy
|
12 |
seaborn
|
13 |
+
gitpython
|
app.py
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
|
2 |
import streamlit as st
|
3 |
-
import
|
4 |
|
5 |
subprocesses.run(['git', 'clone', 'https://huggingface.co/ttmn/SolLlama-mtr'])
|
|
|
6 |
|
7 |
import sys
|
8 |
import os
|
|
|
1 |
|
2 |
import streamlit as st
|
3 |
+
from git import Repo
|
4 |
|
5 |
subprocesses.run(['git', 'clone', 'https://huggingface.co/ttmn/SolLlama-mtr'])
|
6 |
+
Repo.clone_from('https://huggingface.co/ttmn/SolLlama-mtr', './')
|
7 |
|
8 |
import sys
|
9 |
import os
|
requirements.txt
CHANGED
@@ -10,3 +10,4 @@ pytorch-warmup
|
|
10 |
scikit-learn
|
11 |
scipy
|
12 |
seaborn
|
|
|
|
10 |
scikit-learn
|
11 |
scipy
|
12 |
seaborn
|
13 |
+
gitpython
|