Spaces:
Sleeping
Sleeping
TODO
- Async threading, and have a server of equations. So that threads aren't waiting for others to finish.
- Print out speed of equation evaluation over time. Measure time it takes per cycle
- Add ability to pass an operator as an anonymous function string. E.g.,
binary_operators=["g(x, y) = x+y"]
. - Add error bar capability (thanks Johannes Buchner for suggestion)
- Why don't the constants continually change? It should optimize them every time the equation appears.
- Restart the optimizer to help with this.
- Add several common unary and binary operators; list these.
- Try other initial conditions for optimizer
- Make scaling of changes to constant a hyperparameter
- Make deletion op join deleted subtree to parent
- Update hall of fame every iteration?
- Seems to overfit early if we do this.
- Consider adding mutation to pass an operator in through a new binary operator (e.g., exp(x3)->plus(exp(x3), ...))
- (Added full insertion operator
- Add a node at the top of a tree
- Insert a node at the top of a subtree
- Record very best individual in each population, and return at end.
- Write our own tree copy operation; deepcopy() is the slowest operation by far.
- Hyperparameter tune
- Create a benchmark for accuracy
- Add interface for either defining an operation to learn, or loading in arbitrary dataset.
- Could just write out the dataset in julia, or load it.
- Create a Python interface
- Explicit constant optimization on hall-of-fame
- Create method to find and return all constants, from left to right
- Create method to find and set all constants, in same order
- Pull up some optimization algorithm and add it. Keep the package small!
- Create a benchmark for speed
- Simplify subtrees with only constants beneath them. Or should I? Maybe randomly simplify sometimes?
- Record hall of fame
- Optionally (with hyperparameter) migrate the hall of fame, rather than current bests
- Test performance of reduced precision integers
- No effect
- Create struct to pass through all hyperparameters, instead of treating as constants
- Make sure doesn't affect performance
- Rename package to avoid trademark issues
- PySR?
- Put on PyPI
- Treat baseline as a solution.
- Print score alongside MSE: \delta \log(MSE)/\delta \log(complexity)
- Calculating the loss function - there is duplicate calculations happening.
- Declaration of the weights array every iteration
- Sympy evaluation
- Threaded recursion
- Test suite
- Performance: - Use an enum for functions instead of storing them?
- Gets ~40% speedup on small test.
- Use @fastmath
- Try @spawn over each sub-population. Do random sort, compute mutation for each, then replace 10% oldest.
- Control max depth, rather than max number of nodes?
- Allow user to pass names for variables - use these when printing
- Check for domain errors in an equation quickly before actually running the entire array over it. (We do this now recursively - every single equation is checked for nans/infs when being computed.)
- read the docs page
- Create backup csv file so always something to copy from for
PySR
. Also use random hall of fame file by default. Call function to read from csv after running, so dont need to run again. Dump scores alongside MSE to .csv (and return with Pandas). - Better cleanup of zombie processes after
- Consider printing output sorted by score, not by complexity.
- Sort these todo lists by priority
Feature ideas
- Do printing from Python side. Then we can do simplification and pretty-printing.
- Cross-validation
- Sympy printing
- Hierarchical model, so can re-use functional forms. Output of one equation goes into second equation?
- Add function to plot equations
- Refresh screen rather than dumping to stdout?
- Add ability to save state from python
- Additional degree operators?
- Multi targets (vector ops). Idea 1: Node struct contains argument for which registers it is applied to. Then, can work with multiple components simultaneously. Though this may be tricky to get right. Idea 2: each op is defined by input/output space. Some operators are flexible, and the spaces should be adjusted automatically. Otherwise, only consider ops that make a tree possible. But will need additional ops here to get it to work. Idea 3: define each equation in 2 parts: one part that is shared between all outputs, and one that is different between all outputs. Maybe this could be an array of nodes corresponding to each output. And those nodes would define their functions.
- Tree crossover? I.e., can take as input a part of the same equation, so long as it is the same level or below?
- Create flexible way of providing "simplification recipes." I.e., plus(plus(T, C), C) => plus(T, +(C, C)). The user could pass these.
- Consider allowing multi-threading turned off, for faster testing (cache issue on travis). Or could simply fix the caching issue there.
- Consider returning only the equation of interest; rather than all equations.
- Enable derivative operators. These would differentiate their right argument wrt their left argument, some input variable.
Algorithmic performance ideas:
- Idea: use gradient of equation with respect to each operator (perhaps simply add to each operator) to tell which part is the most "sensitive" to changes. Then, perhaps insert/delete/mutate on that part of the tree?
- Start populations staggered; so that there is more frequent printing (and pops that start a bit later get hall of fame already)?
- Consider adding mutation for constant<->variable
- Implement more parts of the original Eureqa algorithms: https://www.creativemachineslab.com/eureqa.html
- Experiment with freezing parts of model; then we only append/delete at end of tree.
- Use NN to generate weights over all probability distribution conditional on error and existing equation, and train on some randomly-generated equations
- For hierarchical idea: after running some number of iterations, do a search for "most common pattern". Then, turn that subtree into its own operator.
- Calculate feature importances based on features we've already seen, then weight those features up in all random generations.
- Calculate feature importances of future mutations, by looking at correlation between residual of model, and the features.
- Store feature importances of future, and periodically update it.
- Punish depth rather than size, as depth really hurts during optimization.
Code performance ideas:
- Try defining a binary tree as an array, rather than a linked list. See https://stackoverflow.com/a/6384714/2689923
- Add true multi-node processing, with MPI, or just file sharing. Multiple populations per core.
- Ongoing in cluster branch
- Performance: try inling things?
- Try storing things like number nodes in a tree; then can iterate instead of counting
mutable struct Tree
degree::Array{Integer, 1}
val::Array{Float32, 1}
constant::Array{Bool, 1}
op::Array{Integer, 1}
Tree(s::Integer) = new(zeros(Integer, s), zeros(Float32, s), zeros(Bool, s), zeros(Integer, s))
end
Then, we could even work with trees on the GPU, since they are all pre-allocated arrays.
A population could be a Tree, but with degree 2 on all the degrees. So a slice of population arrays forms a tree.
How many operations can we do via matrix ops? Mutate node=>easy.
Can probably batch and do many operations at once across a population.
- Or, across all populations! Mutate operator: index 2D array and set it to random vector? But the indexing might hurt.
The big advantage: can evaluate all new mutated trees at once; as massive matrix operation.
- Can control depth, rather than maxsize. Then just pretend all trees are full and same depth. Then we really don't need to care about depth.
Can we cache calculations, or does the compiler do that? E.g., I should only have to run exp(x0) once; after that it should be read from memory.
- Done on caching branch. Currently am finding that this is quiet slow (presumably because memory allocation is the main issue).
Add GPU capability?
- Not sure if possible, as binary trees are the real bottleneck.
- Could generate on CPU, evaluate score on GPU?