Spaces:
Runtime error
Runtime error
Update environment for exformer
Browse files- Makefile +8 -2
- client/dist/main.js +0 -0
- environment-dev.yml +1 -1
- environment.yml +1 -1
Makefile
CHANGED
@@ -1,8 +1,14 @@
|
|
1 |
-
ENV_NAME="
|
2 |
|
3 |
env:
|
4 |
conda env create -f ./environment.yml; \
|
5 |
conda activate $(ENV_NAME); \
|
6 |
-
pip install -e server/spacyface; \
|
7 |
pip install -e server/transformers; \
|
8 |
pip install -e server; \
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ENV_NAME="exformer"
|
2 |
|
3 |
env:
|
4 |
conda env create -f ./environment.yml; \
|
5 |
conda activate $(ENV_NAME); \
|
|
|
6 |
pip install -e server/transformers; \
|
7 |
pip install -e server; \
|
8 |
+
|
9 |
+
env-dev:
|
10 |
+
conda env create -f ./environment.yml; \
|
11 |
+
conda activate $(ENV_NAME); \
|
12 |
+
pip install -e server/transformers; \
|
13 |
+
pip install -e server; \
|
14 |
+
conda env update -f ./environment-dev.yml
|
client/dist/main.js
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
environment-dev.yml
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
name:
|
2 |
channels:
|
3 |
- conda-forge
|
4 |
dependencies:
|
|
|
1 |
+
name: exformer
|
2 |
channels:
|
3 |
- conda-forge
|
4 |
dependencies:
|
environment.yml
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
name:
|
2 |
channels:
|
3 |
- pytorch
|
4 |
- conda-forge
|
|
|
1 |
+
name: exformer
|
2 |
channels:
|
3 |
- pytorch
|
4 |
- conda-forge
|