I have a NLP model written in GAMS and I would like to use ROI (R Optimisation Interface) to send it to the NEOS Server.
It looks like ROI_read() is the command for reading in external models, but I don't know how to find out or install the correct reader type/plugin.
Sys.setenv(ROI_LOAD_PLUGINS = FALSE)
library(ROI) # ROI_solve
library(ROI.plugin.neos) # NEOS
x <- ROI_read("rawdata/mymodel.gms", type = "GAMS", solver = "neos")
Error in ROI_read("rawdata/mymodel.gms", type = "GAMS", solver = "neos") :
no reader found for type 'GAMS'
The new GAMS Studio has an integrated NEOS interface that allows you to solve your model on NEOS from within GAMS Studio. Also see this blog post.
Submitting data to NEOS