Replies: 2 comments 5 replies
-
Hi! As someone who also has a stats background I'm very intrigued; why would you need several FSMs? How is it supposed to work? |
Beta Was this translation helpful? Give feedback.
-
It sounds like you're describing a union of FSM. This is currently done in outlines by just merging the patterns, e.g.
Compiling the combined pattern to FSM can be extremely expensive (and in some cases impossible for |
Beta Was this translation helpful? Give feedback.
-
Hi everyone! I have a math/statistics background, and I have just started to learn more about best practice software design patterns and habits when writing code in Python. I need a class of FSM (for a NER use case) that I can easily use to run multiple FSMs as a single FSM. Here is some code I wrote, and I was hoping to get some feedback on how to improve it further (or whether I should go an entirely different route):
Beta Was this translation helpful? Give feedback.
All reactions