Diego,
There are three problems with your ResNet input file:
1. The file appears to contain either a cost column or an area column
in which all of the rows are assigned the value "100". However, ResNet
requires both a cost column and an area column for each row. To
correct this, add an additional column to the ResNet input file.
2. ResNet requires 10 columns that contain the cell identification
numbers of the cells that are adjacent to the current cell. Your
ResNet input file has only 6 columns with adjacent cell information.
Add four additional columns in which each row is set to zero to
correct this.
3. Your ResNet input file has 1104 rows. ResNet requires that the
cells are numbered 1 to n, where n is the number of rows. Thus, the
largest cell identification number for the cells in your ResNet input
file should be "1104". In your ResNet input file, the columns with the
adjacent cell information contain values between 10000 and 16000. This
is incorrect because you have only 1104 cells. Since the cells are
numbered 1 to 1104, it is not possible for the cell identification
number of an adjacent cell to be greater than 1104.
You mentioned an error that arose when you tried to change the file
extension of the logfile to *.log. I assume that the directory already
contained another file with the same file name suffix and the *.txt
extension. Try changing the file name suffix.
Trevon