Nil Geisweiller
Nil Geisweiller
@linas, ``` ReductLink A B ``` would not reduce but just indicate that expression B is reduced form of expression A. We need to keep track of that because some...
The `ReductLink` name is not set in stone, just till we find the actual name. The fact that it trumped you indicates we do need a better one. Note that...
Maybe a better link name would be `ReducedToLink`.
I agree, @linas, but it was added here due to the experimental nature of that work.
Although it is somewhat of a test issue let me answer it. Ideally you want to load csv directly into atomese, to not pay the overhead of creating a structure...
I read the README but it didn't seem clear to me how to incorporate that data in the Atomese evaluation, I mean for instance evaluating ``` (Plus (Schema "f1") (Schema...
@Yidnekachew I'm not sure what is best at this point. I suppose you may separate output and input data, like Table for now. The other problem I'm seeing is that...
That's correct @Yidnekachew . `Table` does hold the column labels, as well as the ITable and OTable, themselves holding their labels.
BTW, it's better if the first feature is the output (as its default MOSES' assumption, I've corrected #3 accordingly).
Other representations to consider would be ```scheme (List (List (Schema "o") (Schema "i1") (Schema "i2")) (List (Number 1) (Number 0) (Number 1)) (List (Number 1) (Number 1) (Number 0)) (List...