Skip to content

Commit

Permalink
Necessary changes to package.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad Anann committed Nov 12, 2023
1 parent a278df4 commit 75a2620
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def predict(student):
print(student)
student = parse_obj_as(Student, student)

clf = joblib.load('node_modules/career-model/model.pkl')
clf = joblib.load('career-model/model.pkl')

student = student.dict(by_alias=True)
query = pd.DataFrame(student, index=[0])
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion install/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"test": "npx tsc && nyc --reporter=html --reporter=text-summary mocha",
"coverage": "nyc report --reporter=text-lcov > ./coverage/lcov.info",
"coveralls": "nyc report --reporter=text-lcov | coveralls && rm -r coverage",
"build": "babel src/ -d dist/",
"build": "babel src/ -d dist/ && pip install -r career-model/requirements.txt",
"flow": "flow"
},
"nyc": {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"test": "npx tsc && nyc --reporter=html --reporter=text-summary mocha",
"coverage": "nyc report --reporter=text-lcov > ./coverage/lcov.info",
"coveralls": "nyc report --reporter=text-lcov | coveralls && rm -r coverage",
"build": "babel src/ -d dist/",
"build": "babel src/ -d dist/ && pip install -r career-model/requirements.txt",
"flow": "flow",
"flow init": "flow init"
},
Expand Down Expand Up @@ -84,7 +84,7 @@
"json2csv": "5.0.7",
"jsonwebtoken": "8.5.1",
"less": "4.1.3",
"lodash": "4.17.21",
"lodash": "^4.17.21",
"logrotate-stream": "0.2.8",
"lru-cache": "7.14.1",
"material-design-lite": "1.3.0",
Expand Down

0 comments on commit 75a2620

Please sign in to comment.