Deployment Bot commited on
Commit Β·
6736d12
1
Parent(s): e07711c
Fix HF Space build: Add missing mapped data CSV files
Browse files- .gitignore +1 -1
- Dockerfile +1 -1
- backend/data/amcat_mapped.csv +3 -0
- backend/data/amcat_raw.csv +3 -0
- backend/data/students.csv +3 -0
- backend/data/synthetic_students.csv +3 -0
.gitignore
CHANGED
|
@@ -23,7 +23,7 @@ ENV/
|
|
| 23 |
!backend/models/.gitkeep
|
| 24 |
|
| 25 |
# βββ Data (regenerate with data_generator.py) ββββββββββββββββ
|
| 26 |
-
backend/data/*.csv
|
| 27 |
# Runtime stores β credentials + college/portfolio mutations (not for VCS)
|
| 28 |
backend/data/accounts.json
|
| 29 |
backend/data/college_data.json
|
|
|
|
| 23 |
!backend/models/.gitkeep
|
| 24 |
|
| 25 |
# βββ Data (regenerate with data_generator.py) ββββββββββββββββ
|
| 26 |
+
# backend/data/*.csv
|
| 27 |
# Runtime stores β credentials + college/portfolio mutations (not for VCS)
|
| 28 |
backend/data/accounts.json
|
| 29 |
backend/data/college_data.json
|
Dockerfile
CHANGED
|
@@ -29,7 +29,7 @@ COPY backend/ ./
|
|
| 29 |
|
| 30 |
# Generate the data and pre-trained models natively inside the container
|
| 31 |
# to avoid Python 3.10 vs 3.13 pickle serialization incompatibilities
|
| 32 |
-
RUN python data_generator.py && python
|
| 33 |
|
| 34 |
# Copy built frontend to backend/static
|
| 35 |
COPY --from=frontend-builder /app/frontend/dist ./static
|
|
|
|
| 29 |
|
| 30 |
# Generate the data and pre-trained models natively inside the container
|
| 31 |
# to avoid Python 3.10 vs 3.13 pickle serialization incompatibilities
|
| 32 |
+
RUN python data_generator.py && python model_pipeline.py --source combined
|
| 33 |
|
| 34 |
# Copy built frontend to backend/static
|
| 35 |
COPY --from=frontend-builder /app/frontend/dist ./static
|
backend/data/amcat_mapped.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:84e3afd463273a34a4d8f5d23550f15040cb51a2efa2b21de1716a8fe710f3ae
|
| 3 |
+
size 321686
|
backend/data/amcat_raw.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:113f730100901dd24e550ffa33ee0b599e99d1f48bde1ae7f1041c903ad17d4b
|
| 3 |
+
size 1143977
|
backend/data/students.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:959692f7c102efce6ce86953e20e5c8ee22c9c6ebcbaf322a0f8502a31800bfa
|
| 3 |
+
size 803633
|
backend/data/synthetic_students.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e986331f54945ce140989bbe612dc30410918476c24cf17d940ec3995a2c9a26
|
| 3 |
+
size 839636
|