Yusuke Oda
Yusuke Oda
`Metric` is implemented for both batched/non-batched operations and it is very annoying to organize overall behavior around `Metric`. Most functions need to switch its behavior with given argument, and it...
`FeatureType`s have the `dtype` member, which specifies the data type of corresponding data. However, this value is represented as `str` and it is unclear that what kind of values are...
Context: #394 If there's no opposite opinions, we could introduce poetry as our package manager in this repository. We need to take following tasks: - [ ] Use poetry to...
# Overview - Support all constant literals. - Digits are wrapped by `{` and `}` so that the subscript operator works: $x_42$ --> $x_{42}$ - This would insert unnecessarily many...
I have worked recently to investigate if we could generate the LaTeX algorithm environment from the function. Actually it can work like this: I think this feature is really useful...
Follows #65 It may be good if we provide a config class integrating every setting, which are currently passed directly to `with_latex`: ```python import latexify config = latexify.Config.defaults() config.use_math_symbols() config.expand_function("expit")...
Follows #63 It is good to provide a `expand_functions` boolean option to control whether some composite functions are expanded or not, e.g.: - `hypot(x, y)` -> $\sqrt{x^2 + y^2}$ -...
It is worth to provide some mechanism to specify particular behaviors by users, such as: - Specifying commands for particular operators (e.g., definition is usually represented as `=`, `:=`, `\equiv`,...
Current NMTKit uses INI files for all configurations (see [the sample script](https://github.com/odashi/nmtkit/blob/master/sample_data/sample_config.ini)) and this lacks some flexibilities for model re-writing. We always need to modify large INI file even if...
It would be great if we support the `match` statement added in Python 3.10, but the entire syntax is somewhat complex. https://docs.python.org/3/library/ast.html#pattern-matching