BookmarkSubscribeRSS Feed
Amelie
Calcite | Level 5

Bonjour à tous,

 

J'ai un message d'erreur étrange lorsque je souhaite lancer ma proc treeboost en précisant measure=LIFT

 

Message d'erreur : ERROR: Internal Error: ABNORMAL return ignored.

 

Voici mon code :

 

PROC TREEBOOST DATA=sasuser.train3 
LEAFSIZE=100
MAXBRANCH=3
ITERATIONS=50 
MINCATSIZE=15
SEED=05042017
SHRINKAGE=0.1
SPLITSIZE=100
TRAINPROPORTION=0.5
;
INPUT &VAR_FAI. / LEVEL=INTERVAL INTERVALDECIMALS=5 ORDER=DESCENDING;
INPUT &VARTEXT. / LEVEL=NOMINAL;
TARGET FLG_CHURN /LEVEL=BINARY;
IMPORTANCE OUTFIT=sasuser.BASE_VARS50;
SUBSERIES BEST;
ASSESS measure=LIFT proportion=0.20;
SAVE IMPORTANCE=sasuser.gbm01varimp50 MODEL=sasuser.gbm01modl50;
RUN;

Merci d'avance pour votre aide

 

2 REPLIES 2
DougWielenga
SAS Employee

The TREEBOOST procedure is a non-HP procedure used by the Gradient Boosting node in SAS Enterprise Miner and is available only to those who have SAS Enterprise Miner licensed.  Unfortunately, there is no support available for the direct use of these non-HP procedures since they were not intended to be used directly.   If you have SAS Enterprise Miner licensed, you can run the Gradient Boosting node to see how TREEBOOST is used. 

 

Having said that, the Gradient Boosting node examples I ran always showed

 

         proc arbor proc=treeboost data=dataset ....

 

so it might just be the way you are trying to use TREEBOOST.   

 

Hope this helps!

Doug

 

 

 

Amelie
Calcite | Level 5

Hi Doug,

 

Thank you for your answer.

I forgave to precise this procedure it's totally OK if I don't precise "measure=LIFT" and the proportion.

That's why I don't understand why the measure option doen't run...

 

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to choose a machine learning algorithm

Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 1384 views
  • 0 likes
  • 2 in conversation