Views
No views yet
AFLPS-ML-Psycholinguistics to predict Big Five personality dimensions from
essay text.pytorch_model.bin: PyTorch bundle containing model weights, TF-IDF
vocabulary, IDF weights, threshold, and metrics.vectorizers/essays_tfidf.npz: portable TF-IDF artifact exported from the
preprocessing environment.deployment.py: model architecture and preprocessing helpers.predict.py: command-line batch and single-text inference script.requirements.txt: minimal inference dependencies.1pip install -r requirements.txt
2python predict.py pytorch_model.bin --text "Paste a new essay here."text column:python predict.py pytorch_model.bin --input essays.csv --output predictions.csvO: OpennessC: ConscientiousnessE: ExtraversionA: AgreeablenessN: NeuroticismLily-Trinh/PersonalityTraitsFromText.