I found the solution for getting Weka to open the .arff file.
Unable to determine structure as arff (Reason: java.lang.illegalArgumentException: Attribute names are not unique!
Causes: 'T' 'T' 'T' 'T' 'I' 'I' 'I' 'I' 'Th' 'Th' 'Th' 'class').
It's not attributes like this @attribute "'\'\'\'\'\'\'\'\'\'\'r\'\'\'\'\'\'\'\'\'\'\'' numeric".
If you open the arff file in a text editor (I used TextMate) you will find the culprits.
(in text mate they show < NUL > )
- @attribute g_b numeric @attribute T numeric @attribute eing
numeric @attribute T numeric @attribute rne numeric @attribute T
numeric @attribute T numeric
You could use control F to search through then attributes for 'I' 'T' and 'Th'
But to speed up the search here are 3 easy-to-search attributes that are close to the problem sites.
for 'I' search for 't_wo',
for 'Th' search for 'ff_'
for 'T' search for 'x_' (attributes will be above for this one)
You can't simply remove them because there's no way to know which numbers apply so I suggest renaming them to T2-4, I2-4 Th2-4. You also need to rename the attribute 'class' to 'class1'