personality-detection icon indicating copy to clipboard operation
personality-detection copied to clipboard

Implementation of a hierarchical CNN based model to detect Big Five personality traits

Results 25 personality-detection issues
Sort by recently updated
recently updated
newest added

Solving the error of preprocessing not working https://github.com/SenticNet/personality-detection/issues/15

Could you provide us with a test dataset, with the same format as the training data?

file function has been deprecated in python 3. To write to a file, you need to use open function. It has the same syntax as file.

changed from xrange to range in python 3+ implementations

The csv file needs to be opened with read(not binary) privileges. The value of encoding to use for opening this file is 'cp1252' on line 18. This change is based...

In python 3+, you need to open the .csv file as a read-only privilege with the encoding of cp1252 or else the code won't work properly.

Hey there, I am trying to understand and implement the code on my own and I wanted to know the logic behind the naming convention of _orig_rev_ in preprocess.py. I...

In each cross-validation step you use mairesse of essay, regardless of whether it is a test or train step. Does it mean that after training to use the resulting model...