Module: AI

Includes:
AICalculate
Included in:
ConceptAI
Defined in:
lib/asker/ai/ai.rb

Overview

Description: Method to be included into every ConceptAI instance.

  • make_questions: use AI to fill @questions Array

Instance Method Summary collapse

Methods included from AICalculate

#calculate_nearness_between_texts, #get_list1_and_list2_from, #reorder_list_with_row

Instance Method Details

#exclude_questionsObject



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/asker/ai/ai.rb', line 51

def exclude_questions
  param = Application.instance.config["questions"]["exclude"]
  return if param.nil?

  tags = param.split(",").each(&:strip!)
  input = {d: [], b: [], f: [], i: [], s: [], t: []}
  output = {d: [], b: [], f: [], i: [], s: [], t: []}

  @questions.each_pair do |key, qlist|
    output[key] = qlist.select { |q| string_has_this_tags?(q.name, tags) }
    input[key] = @questions[key] - output[key]
  end
  @questions = input
  @excluded_questions = output
end

#make_questionsObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/asker/ai/ai.rb', line 11

def make_questions
  return unless concept.process?

  make_questions_stages_di
  # Process every table of this concept
  concept.tables.each do |table|
    list1, list2 = get_list1_and_list2_from(table)
    make_questions_stages_bsf(table, list1, list2)
    make_questions_stages_t(table, list1, list2)
  end
  # -------------------------------------------------------
  # Exclude questions as is defined into asker.ini params
  exclude_questions
end

#make_questions_stages_bsf(table, list1, list2) ⇒ Object

Make questions for stages B, S and F



33
34
35
36
37
38
39
40
# File 'lib/asker/ai/ai.rb', line 33

def make_questions_stages_bsf(table, list1, list2)
  # Stage B: process table to make match questions
  @questions[:b] += StageB.new(self).run(table, list1, list2)
  # Stage S: process tables with sequences
  @questions[:s] += StageS.new(self).run(table, list1, list2)
  # Stage F: process tables with only 1 field
  @questions[:f] += StageF.new(self).run(table, list1, list2)
end

#make_questions_stages_diObject

Make questions for states D and I



27
28
29
30
# File 'lib/asker/ai/ai.rb', line 27

def make_questions_stages_di
  @questions[:d] = StageD.new(self).run  # Process every def{type=text}
  @questions[:i] = StageI.new(self).run  # Process every def{type=image_url}
end

#make_questions_stages_t(table, list1, list2) ⇒ Object



42
43
44
45
46
47
48
49
# File 'lib/asker/ai/ai.rb', line 42

def make_questions_stages_t(table, list1, list2)
  # Stage T: process_tableXfields
  list3 = list1 + list2
  list1.each do |row|
    reorder_list_with_row(list3, row)
    @questions[:t] += StageT.new(self).run(table, row, list3)
  end
end

#string_has_this_tags?(input, tags) ⇒ Boolean

Returns:

  • (Boolean)


67
68
69
70
71
# File 'lib/asker/ai/ai.rb', line 67

def string_has_this_tags?(input, tags)
  flag = false
  tags.each { |e| flag = true if input.include? e }
  flag
end