Mack
Mack
The most recent commit resolves #13.
Another package that seems quite relevant to this conversation is [pydantic](https://pydantic-docs.helpmanual.io/). It provides what I perceive to be an extremely Pythonic validator for JSON Schema and object mapping between JSON...
This might also provide a good pathway to spin out the `stan` backend into its own python package, which can be maintained (or not) separately.
Thanks @aloctavodia! Looking forward to hearing your thoughts on a preferred approach. I'd be to happy to put up a PR but want to make sure the design matches your...
Great, thanks for the guidance! Will hopefully have time to get a PR up for this in the next few weeks.
can "OneVsRestClassifier" be usefull to tune FMclassification into a multi-class classification case
I was able to get the `OneVsRestClassifier` working with the following (not terribly elegant) patching: ``` from fastFM import als class FMClassifier(als.FMClassification): def fit(self, X, y, *args): y = y.copy()...
You might try using [the Python nameparser](http://nameparser.readthedocs.org/en/latest/) package. I've had good luck with that in the past. Please submit a pull request if you manage to make some progress on...
Thank you for your feedback. I believe this gets output to the file `person.csv`. See `pipeline.aminer.ParseAuthorNamesToCSV` for how this is done.
Did you set up your config file per the instructions in the README? If not, that should fix it. If you did, please paste your stack trace so I can...
I'm not 100% sure I'm understanding what your code directory looks like. Is your `config.py` file located in the `pipeline` directory? If not, that's the issue. If that's not the...