Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schoettl/bayesclassifierverwendungszweck.jl
Tokenizer and Naive Bayes classifier for hledger CSV output using Verwendungszweck and amount
https://github.com/schoettl/bayesclassifierverwendungszweck.jl
Last synced: 24 days ago
JSON representation
Tokenizer and Naive Bayes classifier for hledger CSV output using Verwendungszweck and amount
- Host: GitHub
- URL: https://github.com/schoettl/bayesclassifierverwendungszweck.jl
- Owner: schoettl
- License: mit
- Created: 2023-09-24T08:26:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-27T11:54:02.000Z (about 1 year ago)
- Last Synced: 2024-04-29T17:09:39.548Z (6 months ago)
- Language: Julia
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BayesClassifierVerwendungszweck.jl
Tokenizer and Naive Bayes classifier for hledger CSV output using
Verwendungszweck and amountHere is an example script that uses this library to assign the
accounts in stdin and writing the result to stdout.
The first argument `ledger.csv` is used as training data.```sh
time julia --project=. run.jl ledger.csv < ledger2023.csv > ledger2023-assigned.csv
```Fragen:
- wie installiert man alle deps von project.toml?
- how to run a julia script on command line?
- wann === und !== ?
- tryparse -> UndefVarError `warn` not defined
- ! required in assign_accounts! when second arg is modified?
- "show" bzw. tostring definieren für Amount typ
- vorzeichen von amount als token einbeziehen
- `load_data` soll nicht nur string (filename) sondern auch stdin stream können
- how to print warnings to stderr?