Does anyone have experience with the the capture command failing to capture some error? I am using it, I believe consistently with the documentation, in the following way:
capture: ml model ETC, iterate(100)
It is doing this command in the middle of a long series of loops over sub-samples of my data (corresponding to individuals). Then I immediately try to only process solved cases with
if _rc ~= 0 | e(ic) == 100 {
ETC. The problem is that every now and then, and enough times to be time-consuming to "capture by hand" (i.e., skipping that instance by hardwiring the code), I get an error message after the capture command and before the block that processes solved cases.
capture: ml model ETC, iterate(100)
It is doing this command in the middle of a long series of loops over sub-samples of my data (corresponding to individuals). Then I immediately try to only process solved cases with
if _rc ~= 0 | e(ic) == 100 {
ETC. The problem is that every now and then, and enough times to be time-consuming to "capture by hand" (i.e., skipping that instance by hardwiring the code), I get an error message after the capture command and before the block that processes solved cases.
Comment