You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# if true, this will combine successive turns by the same speaker.
71
+
# this will be the base file path for which we generate the three outputs;
72
+
# you will get your outputs in output/chat/my_output_chat_level.csv; output/conv/my_output_conv_level.csv; and output/user/my_output_user_level.
73
+
output_file_base="my_output"
74
+
# it will also store the output into output/turns/my_output_chat_level.csv
77
75
turns=False,
78
76
# these features depend on sentence vectors, so they take longer to generate on larger datasets. Add them in manually if you are interested in adding them to your output!
79
-
custom_features= [
77
+
custom_features= [
80
78
"(BERT) Mimicry",
81
79
"Moving Mimicry",
82
80
"Forward Flow",
@@ -104,7 +102,7 @@ Notably, not all communication features are made equal, as they can be defined a
104
102
2. The **speaker**, and
105
103
3. The **conversation**
106
104
107
-
**We generate a separate output file for each level.** When you declare a FeatureBuilder, you will need to specify an output path for each level of analysis.
105
+
**We generate a separate output file for each level.** When you declare a FeatureBuilder, you can use the `output_file_base`to define a base path shared among all three levels, and an output path will be automatically generated for each level of analysis.
108
106
109
107
For more information, please refer to the [Introduction on our Read the Docs Page](https://conversational-featurizer.readthedocs.io/en/latest/intro.html#intro).
0 commit comments