@@ -147,7 +147,7 @@ def predict_label_scoring(
147147 from bindsnet .datasets .contrastive_transforms import prepend_label_to_image
148148
149149 predictions = []
150- print (f"\n 🔍 DEBUG : Recent goodness tracking:" )
150+ print (f"\n DEBUG : Recent goodness tracking:" )
151151 print (f" Positive: { self ._recent_positive_goodness } " )
152152 print (f" Negative: { self ._recent_negative_goodness } " )
153153
@@ -729,18 +729,17 @@ def train_ff(
729729
730730 # Determine if layer learned
731731 learned = loss_change < - 0.01 # Significant loss decrease
732- status = "✅ LEARNED" if learned else "❌ NO LEARNING"
732+ status = "LEARNED" if learned else "NO LEARNING"
733733 print (f" Status: { status } " )
734734
735735 # Overall learning assessment
736736 overall_loss_change = metrics ['epoch_total_loss' ][- 1 ] - metrics ['epoch_total_loss' ][0 ]
737737 overall_learned = overall_loss_change < - 0.1
738- print (f"\n 🏆 Overall Assessment:" )
739738 print (f" Total loss change: { overall_loss_change :+.4f} " )
740- print (f" Network status: { '✅ LEARNING' if overall_learned else '❌ NOT LEARNING' } " )
739+ print (f" Network status: { 'LEARNING' if overall_learned else 'NOT LEARNING' } " )
741740
742741 if not overall_learned :
743- print (f"\n 💡 Possible Issues:" )
742+ print (f"\n Possible Issues:" )
744743 print (f" - Learning rate too high/low" )
745744 print (f" - Insufficient training data" )
746745 print (f" - Network architecture problems" )
0 commit comments