EternaBrain icon indicating copy to clipboard operation
EternaBrain copied to clipboard

Update encode_movesets

Open RK900 opened this issue 8 years ago • 1 comments
trafficstars

  • Needs to work for moves with multiple base changes in one move
  • Figure out a way to encode number of moves needed to complete the puzzle

RK900 avatar Jan 24 '17 02:01 RK900

Can encode base pairings (G-C, G-U, A-U) as one-hots.

Current encoding of labels: [0, 0, 0, 1] # A, U, G, C

New method of encoding: [0, 0, 0, 0, 0, 0, 1, 0, 0, 0] # A, U, G, C, AU, GU, GC, UA, UG, CG

RK900 avatar Jul 28 '17 16:07 RK900