nickumia / nlp

Natural Language Processing Core
GNU General Public License v3.0
0 stars 0 forks source link

Expand NLP Model #15

Open nickumia opened 8 months ago

nickumia commented 8 months ago

I think the model from my master's thesis is still very powerful. How can I use the concepts from the past and the new AI concepts I'm learning to build a better model.

image image

I also think that the controller method for learning might still have some value. How does this work when combined with reinforcement learning concepts?? image

nickumia commented 8 months ago

Related to the controller method:

flowchart LR
  T[[Transfer Function]]
  s1[[1/s]]
  s2[[1/s]]
  feedback1[[Feedback]]
  feedback2[[Feedback]]
  feedback3[[Feedback]]
  input(Input)
  output(Output)
  sum((x))
  input -- + -->sum
  sum --> T
  T -- a -->s1
  s1 -- v -->s2
  s2 -- x -->output
  output --> feedback3
  feedback3 -- "-" --> sum
  s2 --> feedback2
  feedback2 -- "-" --> sum
  s1 --> feedback1
  feedback1 -- "-" --> sum

In traditional control: