Slackbot
09/30/2022, 3:34 PMEduardo
Jess Mankewitz (they/she)
09/30/2022, 7:25 PMJess Mankewitz (they/she)
09/30/2022, 7:26 PMEduardo
conda env export --no-build > environment.yml
? this will produce a portable yml file that you can use to re-create environments on other machinesIdo (Ploomber)
Jess Mankewitz (they/she)
10/02/2022, 6:21 PMJess Mankewitz (they/she)
10/02/2022, 6:22 PMMatej UhrĂn
10/02/2022, 6:25 PMConda env create ...
Pip install -e
Jess Mankewitz (they/she)
10/02/2022, 6:28 PMname: proj_pipeline
channels:
- conda-forge
- defaults
dependencies:
- ploomber=0.19.4
- python=3.8.13
- r-base=4.0.5
Matej UhrĂn
10/02/2022, 6:29 PMJess Mankewitz (they/she)
10/02/2022, 6:30 PMconda env create -f proj_pipeline.yml
conda activate proj_pipeline
ploomber scaffold --entry-point pipeline.preprocessing.yaml
ploomber scaffold --entry-point pipeline.modeling.yaml
#install childesr in R, not conda
R
install.packages(c("childesr", "dclone")) # mirror 76
#setup the nltk
python
import nltk
nltk.download('wordnet')
nltk.download('omw-1.4')
nltk.download('semcor')
Matej UhrĂn
10/02/2022, 6:30 PMJess Mankewitz (they/she)
10/02/2022, 6:30 PMMatej UhrĂn
10/02/2022, 6:30 PMJess Mankewitz (they/she)
10/02/2022, 6:31 PMJess Mankewitz (they/she)
10/02/2022, 6:31 PMJess Mankewitz (they/she)
10/02/2022, 6:31 PMJess Mankewitz (they/she)
10/02/2022, 6:31 PMMatej UhrĂn
10/02/2022, 6:33 PMJess Mankewitz (they/she)
10/02/2022, 6:34 PMJess Mankewitz (they/she)
10/02/2022, 6:35 PMMatej UhrĂn
10/04/2022, 12:52 PM