vaaaaanquish
vaaaaanquish
Hi. With the latest hora, I get a panic when using `hora::core::metrics::Metric::CosineSimilarity`. ``` thread '' panicked at 'called `Option::unwrap()` on a `None` value', /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hora-0.1.1/src/core/neighbor.rs:32:54 ``` I think this is an...
## xonfig ``` +------------------+----------------------+ | xonsh | 0.9.25.dev3 | | Git SHA | 71fe9014 | | Commit Date | Jan 29 08:58:58 2021 | | Python | 3.8.5 | |...
Hi. I develop a wrapper for luigi. I'd like to get the stacktrace from not standard I/O when a task run by `luigi.run()` or `luigi.build()` fails. for example ``` result...
I'll create a task like `Function` that won't be saved. for example ```python import gokart class Pipeline(gokart.TaskOnKart): def requires(self): data = LoadData() features = [MakeFeatureA(data=data), MakeFeatureB(data=data), MakeFeatureC(data=data)] # `Flatten` is...
I would like to see a function that can be used for tests where you don't want to leave a pkl. now ``` df = gokart.build(Foo()) # dump pkl ./resource/......
I want to be able to create dependent tasks easily for regression test. image: ``` X = gokart.MockTask(dump_value='hoge') class Example(gokart.TaskOnKart): target = gokart.TaskInstanceParameter() ... task = Example(target=X) df = gokart.build(task)...
Gokart is based on a DataFrame. But `pd.testing.assert_frame_equal` is not a simple way to compare df. This is especially true for sort and index problems. now ``` expected = pd.DataFrame(...)...
I want a mock task instance generator to make test more convenient. now ``` from_date = datetime.date(2020, 1, 1) to_date = datetime.date(2020, 1, 5) target = gokart.TaskOnKart() task = ExampleTask(from_date=from_date,...
We need a linter for sphinx. https://github.com/maet3608/splint