-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
solver(s) question #260
Comments
Hey @picousse, You say FBA but your example shows an OptKnock run which is a mixed-integer linear programming (MILP) problem. Generally, GLPK performs very well on linear programming (LP) problems such as FBA, FVA, or linear MOMA but is very slow for MILP ones as you have discovered with OptKnock here. For MILP, cameo's underlying solver interface optlang currently supports CPLEX and Gurobi, both of which have academic options but are otherwise pricey. There has been talk about SCIP but I wouldn't expect that in the near future. |
Hi, Is there anything available in the cloud? A solver that you can use per hour or so? CLPEX exists but it in the cloud it is called watson? Neos server might be interesting as well as it seems to give acces to CPLEX and/or Gurobi (and a couple of other solvers). But I have no clue whatsover how I could use it. So besides the answer on the more fundamental part, I'm also wondering how I could solve this technically. Best regards, |
How well does glpk scale? Would it help to run it on a HPC? I'm running this since friday, and still going strong... |
It's quite likely that it is stuck in the solution process unfortunately. Maybe abort the process and restart it with solver log output so that you can see what the solver is doing. To do so, you should be able to set Regarding your question for more options, maybe @phantomas1234 has an idea, but I can't think of anything else right now, sorry. |
okay, Thanks for the tips and input. |
You should see the solver output in the terminal where you started the Jupyter notebook. |
ach owkay. I'm running this on a jupyterlab server (over jupyterhub). Pff solvers seems to be a pain in the ass...
script is not finished. no idea what to do next... |
Hi,
As somebody that just wants to play a bit with FBA, I'm a bit choked on what to do solver wise.
I'm now running an example using a genome scale model (linux machine)
and it is currently already running for 24h.
Does that even make sense?
I used Gurobi in my Uni time, and that was fast, but also expensive for non academic use.
What are the options for somebody who want to play with FBA now and then? Can you do something with GLPK of is that just a lost cause?
The text was updated successfully, but these errors were encountered: