From b5a376c000e6da8e8d3d987de187a1b54fd12cbf Mon Sep 17 00:00:00 2001 From: PetrochukKsenija Date: Fri, 15 Dec 2023 14:25:21 +0300 Subject: [PATCH 1/3] feat: interface (dialog component) --- interface/src/components/Chat/Chat.tsx | 89 +- interface/src/components/Chat/Date/Date.tsx | 64 +- .../src/components/Chat/Message/Message.tsx | 81 +- .../src/components/Chat/Message/styled.ts | 4 +- .../NIKA_interface.gwf | 886 ++++++++++++------ .../concepts/concept_active_button.scs | 9 + .../concepts/concept_button.scs | 1 + .../concepts/concept_data_input_component.scs | 2 + .../concepts/concept_date.scs | 9 + .../concepts/concept_date_text.scs | 9 + .../concepts/concept_input_text.scs | 9 + .../concepts/concept_received_message.scs | 9 + .../concepts/concept_sent_message.scs | 9 + .../concepts/concept_text_of_message.scs | 9 + .../concepts/concept_time.scs | 9 + .../phrases/concept_color_phrase.gwf | 82 +- 16 files changed, 944 insertions(+), 337 deletions(-) create mode 100644 kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_active_button.scs create mode 100644 kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_date.scs create mode 100644 kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_date_text.scs create mode 100644 kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_input_text.scs create mode 100644 kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_received_message.scs create mode 100644 kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_sent_message.scs create mode 100644 kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_text_of_message.scs create mode 100644 kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_time.scs diff --git a/interface/src/components/Chat/Chat.tsx b/interface/src/components/Chat/Chat.tsx index fc63408a2..f8c59574a 100644 --- a/interface/src/components/Chat/Chat.tsx +++ b/interface/src/components/Chat/Chat.tsx @@ -33,6 +33,8 @@ import { Spinner } from '@components/Spinners/LoadSpinner'; import { WaitingSpinner } from '@components/Spinners/WaitingSpinner'; import { refSetter, throttle } from '@utils'; import { useLanguage } from '@hooks/useLanguage'; +import { ScEventParams, ScEventType, ScTemplate, ScType } from "ts-sc-client"; +import { client } from "@api"; interface IProps { onSend: (message: string) => void; @@ -65,6 +67,13 @@ export const Chat = forwardRef>( const [isLoading, setIsLoading] = useState(false); const [beforeFetchingScrollHeight, setBeforeFetchingScrollHeight] = useState(null); + const [mainBgColor, setMainBgColor] = useState('#ffffff'); + const [inputBgColor, setInputBgColor] = useState('#ffffff'); + const [buttonBgColor, setButtonBgColor] = useState('#ffffff'); + const [buttonActiveColor, setButtonActiveColor] = useState('#ffffff'); + const [inputTextColor, setInputTextColor] = useState('#ffffff'); + const funcChange = [setMainBgColor, setInputBgColor, setButtonBgColor, setInputTextColor, setButtonActiveColor] + const inputRef = useRef(null); const mainRef = useRef(null); const footerRef = useRef(null); @@ -130,6 +139,61 @@ export const Chat = forwardRef>( }; const hookLanguage = useLanguage(); + async function fetchColorValue() { + const conceptMain = 'concept_data_output_component'; + const conceptDataInputComponent = 'concept_data_input_component'; + const conceptButton = 'concept_button' + const conceptActiveButton = 'concept_active_button' + const conceptInputText = 'concept_input_text' + const componentColor = 'nrel_component_color'; + + const baseKeynodes = [ + { id: conceptMain, type: ScType.NodeConstClass }, + { id: conceptDataInputComponent, type: ScType.NodeConstClass }, + { id: conceptButton, type: ScType.NodeConstClass }, + { id: conceptInputText, type: ScType.NodeConstClass }, + { id: conceptActiveButton, type: ScType.NodeConstClass }, + ]; + + const helpKeynodes = [ + { id: componentColor, type: ScType.NodeConstNoRole }, + ]; + + const colorAlias = '_color'; + const componentAlias = '_component' + + const keynodes = await client.resolveKeynodes(baseKeynodes); + const hKeynodes = await client.resolveKeynodes(helpKeynodes); + + for (var i = 0; i < baseKeynodes.length; i++) { + const template = new ScTemplate(); + template.triple( + keynodes[baseKeynodes[i].id], + ScType.EdgeAccessVarPosPerm, + [ScType.NodeVar, componentAlias], + ); + template.tripleWithRelation( + componentAlias, + ScType.EdgeDCommonVar, + [ScType.LinkVar, colorAlias], + ScType.EdgeAccessVarPosPerm, + hKeynodes[componentColor], + ); + const resultColorLink = await client.templateSearch(template); + + if (resultColorLink.length) { + const colorLink = resultColorLink[0].get(colorAlias); + const resultColor = await client.getLinkContents([colorLink]); + if (resultColor.length) { + let color = resultColor[0].data; + funcChange[i](color as any); + const eventParams = new ScEventParams(colorLink, ScEventType.ChangeContent, fetchColorValue); + await client.eventsCreate([eventParams]); + } + } + } + } + useEffect(() => { const LOADING_HEIGHT = 43; const heightOnScroll = mainRef.current?.scrollHeight; @@ -176,9 +240,27 @@ export const Chat = forwardRef>( if (empty) setMessageInput(''); }, [messageInput]); + useEffect(() => { + fetchColorValue(); + }, []); + + const mainStyles = { + background: mainBgColor, + }; + + const inputStyles = { + background: inputBgColor, + color: inputTextColor, + }; + + const buttonStyles = { + background: buttonBgColor, + stroke: buttonActiveColor, + }; + return ( - - + +
{isLoading && ( @@ -212,6 +294,7 @@ export const Chat = forwardRef>( >( type="text" placeholder={textPlaceholder[hookLanguage]} /> - + diff --git a/interface/src/components/Chat/Date/Date.tsx b/interface/src/components/Chat/Date/Date.tsx index d795bd1eb..df2b4ef13 100644 --- a/interface/src/components/Chat/Date/Date.tsx +++ b/interface/src/components/Chat/Date/Date.tsx @@ -1,5 +1,9 @@ import { useLanguage } from '@hooks/useLanguage'; import styled from 'styled-components'; +import { useEffect, useState } from "react"; +import { ScEventParams, ScEventType, ScTemplate, ScType } from "ts-sc-client"; +import { client } from "@api"; + interface IProps { date: string; } @@ -57,9 +61,67 @@ export const Date = ({ date }: IProps) => { const [year, month, day] = date.toString().split('.'); const currentMonth = months[hookLanguage]; + const [dateBgColor, setDateBgColor] = useState('#8fc1cf'); + const [dateTextColor, setDateTextColor] = useState('#000000'); + const funcChange = [setDateBgColor, setDateTextColor] + + async function fetchColorValue() { + const conceptDate = 'concept_date'; + const conceptDateText = 'concept_date_text'; + const componentColor = 'nrel_component_color'; + const baseKeynodes = [ + { id: conceptDate, type: ScType.NodeConstClass }, + { id: conceptDateText, type: ScType.NodeConstClass }, + ]; + const helpKeynodes = [ + { id: componentColor, type: ScType.NodeConstNoRole }, + ]; + const colorAlias = '_color'; + const componentAlias = '_component' + const keynodes = await client.resolveKeynodes(baseKeynodes); + const hKeynodes = await client.resolveKeynodes(helpKeynodes); + + for (var i = 0; i < baseKeynodes.length; i++) { + const template = new ScTemplate(); + template.triple( + keynodes[baseKeynodes[i].id], + ScType.EdgeAccessVarPosPerm, + [ScType.NodeVar, componentAlias], + ); + template.tripleWithRelation( + componentAlias, + ScType.EdgeDCommonVar, + [ScType.LinkVar, colorAlias], + ScType.EdgeAccessVarPosPerm, + hKeynodes[componentColor], + ); + const resultColorLink = await client.templateSearch(template); + + if (resultColorLink.length) { + const colorLink = resultColorLink[0].get(colorAlias); + const resultColor = await client.getLinkContents([colorLink]); + if (resultColor.length) { + let color = resultColor[0].data; + funcChange[i](color as any); + const eventParams = new ScEventParams(colorLink, ScEventType.ChangeContent, fetchColorValue); + await client.eventsCreate([eventParams]); + } + } + } + } + useEffect(() => { + fetchColorValue(); + }, []); + + + const dateStyles = { + background: dateBgColor, + color: dateTextColor + }; + return ( <> - + {`${day} ${currentMonth[Number(month)]} ${year}`} diff --git a/interface/src/components/Chat/Message/Message.tsx b/interface/src/components/Chat/Message/Message.tsx index adcb3a0a8..d7d165956 100644 --- a/interface/src/components/Chat/Message/Message.tsx +++ b/interface/src/components/Chat/Message/Message.tsx @@ -15,6 +15,10 @@ import { ReactComponent as LoadingIcon } from '@assets/icon/messageLoading.svg'; import { ReactComponent as ErrorIcon } from '@assets/icon/errorMessage-icon.svg'; import { ReactComponent as RebootIcon } from '@assets/icon/rebootErrorMessage-icon.svg'; import { useLanguage } from '@hooks/useLanguage'; +import { ScEventParams, ScEventType, ScTemplate, ScType } from "ts-sc-client"; +import { client } from "@api"; +import { useEffect, useState } from "react"; + interface IProps { isLoading?: boolean; isLeft?: boolean; @@ -39,15 +43,86 @@ export const Message = ({ }: PropsWithChildren) => { const hookLanguage = useLanguage(); + const [userBgColor, setUserBgColor] = useState('#E2E9E7'); + const [systemBgColor, setSystemBgColor] = useState('#DFDBD0'); + const [messageTextColor, setMessageTextColor] = useState('#000000'); + const [timeColor, settimeColor] = useState('#696969'); + const funcChange = [setUserBgColor, setSystemBgColor, setMessageTextColor, settimeColor] + + async function fetchColorValue() { + const conceptSentMessage = 'concept_sent_message'; + const conceptReceivedMessage = 'concept_received_message'; + const componentColor = 'nrel_component_color'; + const conceptMessageText = 'concept_text_of_message'; + const conceptTime = 'concept_time'; + + const baseKeynodes = [ + { id: conceptSentMessage, type: ScType.NodeConstClass }, + { id: conceptReceivedMessage, type: ScType.NodeConstClass }, + { id: conceptMessageText, type: ScType.NodeConstClass }, + { id: conceptTime, type: ScType.NodeConstClass } + ]; + + const helpKeynodes = [ + { id: componentColor, type: ScType.NodeConstNoRole }, + ]; + + const colorAlias = '_color'; + const componentAlias = '_component' + + const keynodes = await client.resolveKeynodes(baseKeynodes); + const hKeynodes = await client.resolveKeynodes(helpKeynodes); + + for (var i = 0; i < baseKeynodes.length; i++) { + const template = new ScTemplate(); + template.triple( + keynodes[baseKeynodes[i].id], + ScType.EdgeAccessVarPosPerm, + [ScType.NodeVar, componentAlias], + ); + template.tripleWithRelation( + componentAlias, + ScType.EdgeDCommonVar, + [ScType.LinkVar, colorAlias], + ScType.EdgeAccessVarPosPerm, + hKeynodes[componentColor], + ); + const resultColorLink = await client.templateSearch(template); + + if (resultColorLink.length) { + const colorLink = resultColorLink[0].get(colorAlias); + const resultColor = await client.getLinkContents([colorLink]); + if (resultColor.length) { + let color = resultColor[0].data; + funcChange[i](color as any); + const eventParams = new ScEventParams(colorLink, ScEventType.ChangeContent, fetchColorValue); + await client.eventsCreate([eventParams]); + } + } + } + } + + useEffect(() => { + fetchColorValue(); + }, []); + + const messageTextStyles = { + color: messageTextColor, + }; + + const timeStyles = { + color: timeColor, + }; + return ( <> <> - - + + {children} - + {isLoading && !isLeft && } diff --git a/interface/src/components/Chat/Message/styled.ts b/interface/src/components/Chat/Message/styled.ts index d9465e3a3..7687fcbff 100644 --- a/interface/src/components/Chat/Message/styled.ts +++ b/interface/src/components/Chat/Message/styled.ts @@ -1,13 +1,13 @@ import styled from 'styled-components'; -export const WrapperMessage = styled.div<{ isLeft: boolean }>` +export const WrapperMessage = styled.div<{ isLeft: boolean; color1: string; color2: string}>` position: relative; width: fit-content; max-width: 65%; margin: 0px 18px 8px 16px; padding: 8px 8px 8px 8px; align-self: ${(props) => (props.isLeft ? 'start' : 'end')}; - background: ${(props) => (props.isLeft ? '#DFDBD0' : '#E2E9E7')}; + background: ${(props) => (props.isLeft ? props.color1 : props.color2)}; border-radius: 10px; word-break: break-word; diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/NIKA_interface.gwf b/kb/section_subject_domain_of_ostis_system_interfaces/NIKA_interface.gwf index c3654f00f..121f1d811 100644 --- a/kb/section_subject_domain_of_ostis_system_interfaces/NIKA_interface.gwf +++ b/kb/section_subject_domain_of_ostis_system_interfaces/NIKA_interface.gwf @@ -1,811 +1,1129 @@ - + - - + + - - + + + + + + + + + + + + + + - + + + + - + + + + + + + - + - - + + - - + + - + - + + + + + + + + + + + + + + + + + + + + + + - + - + - + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - + - + - + - + - - - - + - - - - + - + - + - + - + - + + + + - + - - - - + - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + - + + + + - + - + - + - + - + - + - + - + - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_active_button.scs b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_active_button.scs new file mode 100644 index 000000000..21482214a --- /dev/null +++ b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_active_button.scs @@ -0,0 +1,9 @@ +concept_active_button +<- sc_node_class; +<- concept_wit_entity; +=> nrel_inclusion: + concept_non_atomic_user_interface_component; +=> nrel_main_idtf: + [активная кнопка] (* <- lang_ru;; *); +=> nrel_note: + [Класс в который входят все кнопки, на которые наводят курсор мыши] (* <- lang_ru;; *);; diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_button.scs b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_button.scs index 8ad666920..f274a286d 100644 --- a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_button.scs +++ b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_button.scs @@ -1,5 +1,6 @@ concept_button <- sc_node_class; +<- concept_wit_entity; => nrel_main_idtf: [кнопка] (* <- lang_ru;; *); diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_data_input_component.scs b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_data_input_component.scs index 2d37fe7c9..b30196768 100644 --- a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_data_input_component.scs +++ b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_data_input_component.scs @@ -1,5 +1,6 @@ concept_data_input_component <- sc_node_class; +<- concept_wit_entity; => nrel_main_idtf: [компонент ввода данных] (* <- lang_ru;; *); @@ -9,6 +10,7 @@ concept_data_input_component concept_data_output_component <- sc_node_class; +<- concept_wit_entity; => nrel_main_idtf: [компонент вывода данных] (* <- lang_ru;; *); diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_date.scs b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_date.scs new file mode 100644 index 000000000..1e6eb38d6 --- /dev/null +++ b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_date.scs @@ -0,0 +1,9 @@ +concept_date +<- sc_node_class; +<- concept_wit_entity; +=> nrel_inclusion: + concept_data_output_component; +=> nrel_main_idtf: + [дата] (* <- lang_ru;; *); +=> nrel_note: + [Класс блоков с датой в диалоговом окне] (* <- lang_ru;; *);; diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_date_text.scs b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_date_text.scs new file mode 100644 index 000000000..d5d1607b3 --- /dev/null +++ b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_date_text.scs @@ -0,0 +1,9 @@ +concept_date_text +<- sc_node_class; +<- concept_wit_entity; +=> nrel_inclusion: + concept_data_output_component; +=> nrel_main_idtf: + [текст даты] (* <- lang_ru;; *); +=> nrel_note: + [Класс компонентов, который отвечает за текст, который появяктся в компоненте с датой в диалоговом окне] (* <- lang_ru;; *);; diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_input_text.scs b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_input_text.scs new file mode 100644 index 000000000..473c525a1 --- /dev/null +++ b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_input_text.scs @@ -0,0 +1,9 @@ +concept_input_text +<- sc_node_class; +<- concept_wit_entity; +=> nrel_inclusion: + concept_non_atomic_user_interface_component; +=> nrel_main_idtf: + [вводимый текст] (* <- lang_ru;; *); +=> nrel_note: + [Класс текстов, который вводятся в компонентах ввода данных] (* <- lang_ru;; *);; diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_received_message.scs b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_received_message.scs new file mode 100644 index 000000000..f2ec89037 --- /dev/null +++ b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_received_message.scs @@ -0,0 +1,9 @@ +concept_received_message +<- sc_node_class; +<- concept_wit_entity; +=> nrel_inclusion: + concept_data_output_component; +=> nrel_main_idtf: + [полученное сообщение] (* <- lang_ru;; *); +=> nrel_note: + [Класс сообщений, который отправляются системой] (* <- lang_ru;; *);; \ No newline at end of file diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_sent_message.scs b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_sent_message.scs new file mode 100644 index 000000000..a20b8eead --- /dev/null +++ b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_sent_message.scs @@ -0,0 +1,9 @@ +concept_sent_message +<- sc_node_class; +<- concept_wit_entity; +=> nrel_inclusion: + concept_data_output_component; +=> nrel_main_idtf: + [отправленное сообщение] (* <- lang_ru;; *); +=> nrel_note: + [Класс сообщений, которые отправляются пользователем] (* <- lang_ru;; *);; diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_text_of_message.scs b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_text_of_message.scs new file mode 100644 index 000000000..fe940dd2b --- /dev/null +++ b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_text_of_message.scs @@ -0,0 +1,9 @@ +concept_text_of_message +<- sc_node_class; +<- concept_wit_entity; +=> nrel_inclusion: + concept_data_output_component; +=> nrel_main_idtf: + [текст сообщения] (* <- lang_ru;; *); +=> nrel_note: + [Класс текстов, которые отображаются в сообщениях диалогового окна] (* <- lang_ru;; *);; diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_time.scs b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_time.scs new file mode 100644 index 000000000..8d2147dc6 --- /dev/null +++ b/kb/section_subject_domain_of_ostis_system_interfaces/concepts/concept_time.scs @@ -0,0 +1,9 @@ +concept_time +<- sc_node_class; +<- concept_wit_entity; +=> nrel_inclusion: + concept_data_output_component; +=> nrel_main_idtf: + [время] (* <- lang_ru;; *); +=> nrel_note: + [Класс, в который входят компоненты времени, который отображаются на сообщениях в диалоговом окне] (* <- lang_ru;; *);; diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/phrases/concept_color_phrase.gwf b/kb/section_subject_domain_of_ostis_system_interfaces/phrases/concept_color_phrase.gwf index 55136497f..35757a179 100644 --- a/kb/section_subject_domain_of_ostis_system_interfaces/phrases/concept_color_phrase.gwf +++ b/kb/section_subject_domain_of_ostis_system_interfaces/phrases/concept_color_phrase.gwf @@ -1,76 +1,70 @@ - + - + - + - + - + - - - - - - - + - + - + - + - + - - - - + + + + - + - + - + - + - + - + - + - + - + - + @@ -78,40 +72,40 @@ - - - - + - + - + - + - + - + + + + - + - + - + - + - + From 214923c8b1a319ab744495a8d174cf4e0213ea53 Mon Sep 17 00:00:00 2001 From: PetrochukKsenija Date: Fri, 15 Dec 2023 14:33:19 +0300 Subject: [PATCH 2/3] feat: archive from wit --- .../wit_nika_interface.zip | Bin 0 -> 2327 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 kb/section_subject_domain_of_ostis_system_interfaces/wit_nika_interface.zip diff --git a/kb/section_subject_domain_of_ostis_system_interfaces/wit_nika_interface.zip b/kb/section_subject_domain_of_ostis_system_interfaces/wit_nika_interface.zip new file mode 100644 index 0000000000000000000000000000000000000000..fc0e9ead44cf980f1f4a97392ab72465ad20ab1a GIT binary patch literal 2327 zcma)-c|4T+9>Do90s_TR+tLs8ATIfKZ}Ji$nEBsmklnfr0K9--JmE z0$pxA2_tV{PK%H-ehHrrJowVPN)P{;U*oc~#x#9pWJr;XTTg6GK2d;z0t&^=HGsku zmoB#t(6rwMr#E@U%BPIU981IrZm!33TyBz50}uLqPJkn$!s;rTI*(IO=w68ZciP(Z z{~4Um(v-pm0Lq7I!{QI4Ed#1j)55=z+9TJ_e!o^|vgpV~UrJJ>5LBc5Hh z>mTS)WN*eH_2y&-sEYXJNjlPdrqHB!hD3UZS1k*v(in{cc%1*1N#o*JrlHU1|=7LLiZ{ zuY771GGQpB>=ZiVcwdeD6ZE8*nNM+5E)Vd%Ky5j=$t3H?O$!5n%Kss7Pj2j*#{$vWJS(R<66uLPg>hIQ`@RRM@X?v-&T4I8rF+Ne1x;Kg!(Q&GhmZn^P z_q|fXi?*;AA$*i+SZ}CKsY`TPfY5o+orQ73(B}?A^ueix&A6S&vYTQKM&$K!Z80)l zwdzBQb=1nn0}(z+#xX|G%eD_@1*t*ji!3vT6DlnY?IffS7L*{g_35$`0z~Sg2`9H= zrwN_%FDr(Myx^fvemd|MCBJFWZe?L6maH^_05-HrX9PEicST$>c9f9b7G#`jp z{KI^jLQ9-O$p8V{!>37kjZY0uQ8kY@7C5wBW7j`PczyG$^Sz~^oDXR`Y4hX8xYzt* zUU3|NQ1b0+MIo1HXT|;opAflcew3Gb$=Ppuy)Kp5pag8`fq6S}Yl*ME*cj&>Yv%F| z|JQ?YUL#3}(^~Zwj9Fu(tPW!2Zy;w^`G|w-bAVM=9S|)?DtO0S|6@#O zaT4Ftcn=3w@;slOAQYYjZDy-ATv9b4mTrOFqGe+!Hq(0Ulgy~3(;59Lj2YfF6PQh8 z5&X5^x1I5{LB{SigkhHu`> zkwbV1pdn5=yPnKD0qKs*c@=cdzge23RU)s#^D6b&dy;+g-in-JxIEOaP>QACbsul< z9EH$xs#31Td3?kqI#gXVuU@>e5?5%`;5RF_=&gTDp@McpA66KhUwKlV5zw4k$WR@0 z*KTfF&}|t+M4q)+IjetxHiQa2kMWl+X&MZs7rTMXG`U?IuEGMGAxb*!0`RVFBr|HZ z9Dk&sdr-2@K#q*mU0-0^&>B(bnKFt4)EMR2rDI=-XHJ38TBvx9KpMa8NHNBQa=SM% zCoHpz{LEX{f3p3CR-{pY9*2RmEol57B_uY3cuZAHw`@GfSQFIJHP`sK@SD2QvPKKd z1NR@iD=3nZa5ul@i+3&U7w%wT$jUrZkjWt-MJdLHwQaALz^;@X4JEy>3CiNSL!(^h zBl)!HQHtkYHmaMYAU+eOGiol#RrTZ+(OoY%tIcArcg&D0Talszis8+-DC7N9Mr!s3 zx2IA*Ue}p;O-Aw0&Y4OTPP+B&JC9KKP5%<(#@r}U{`2?8)Gq3qbdRX(zZSlqTH+_l zIO!~Z4^4G6Bd%pJdGk|q3Z)b6L|SR%TleaNk75Ewj9ko~FF|{C`}}JQ+}k{Z9Hpxp zzKtwjnzDVApq&C~H;SXy$K2eY32gO@BRmq$C3TLBiXTmqfMr$XFk2A|HN71%8&;so>4yV?F&OVfTiPuvH#=B#6xz z{PRv_*?aG3B Date: Fri, 15 Dec 2023 15:10:36 +0300 Subject: [PATCH 3/3] feat: video and training --- kb/extra/questions_tpis/contact.gwf | 44 ++++++ .../message_about_absolute_concept.gwf | 44 ++++++ .../message/message_about_ai_directions.gwf | 44 ++++++ .../message_about_ai_object_of_studying.gwf | 44 ++++++ ...f_relatives_between_different_concepts.gwf | 44 ++++++ ...ge_about_artificial_intelligent_system.gwf | 44 ++++++ ...rion_for_selecting_a_class_of_concepts.gwf | 44 ++++++ ...between_absolute_and_relative_concepts.gwf | 44 ++++++ ...stem_and_artificial_intelligent_system.gwf | 44 ++++++ ...iff_between_knowledges_and_information.gwf | 44 ++++++ ...ss_of_research_object_and_object_class.gwf | 44 ++++++ ...f_relatives_between_different_concepts.gwf | 44 ++++++ ...examples_of_sections_and_subject_areas.gwf | 44 ++++++ ...requirements_in_sc_code_identification.gwf | 44 ++++++ .../message/message_about_information.gwf | 44 ++++++ ...sage_about_intelligent_computer_system.gwf | 44 ++++++ ...bout_intelligent_computer_system_props.gwf | 44 ++++++ .../message/message_about_knowledges.gwf | 44 ++++++ ...ssage_about_main_parts_of_subject_area.gwf | 44 ++++++ .../message/message_about_nika.gwf | 44 ++++++ .../message/message_about_nika_aims.gwf | 44 ++++++ .../message/message_about_nika_functions.gwf | 44 ++++++ ...ge_about_org_and_struct_knowledge_base.gwf | 44 ++++++ ...sage_about_ostis_system_knowledge_base.gwf | 44 ++++++ ...bout_ostis_system_opportunity_to_exist.gwf | 44 ++++++ ...message_about_ostis_systems_advantages.gwf | 44 ++++++ ...message_about_ostis_systems_components.gwf | 44 ++++++ .../message_about_relative_concept.gwf | 44 ++++++ ...gments_of_knowledge_base_formalization.gwf | 44 ++++++ .../message/message_about_sc_code.gwf | 44 ++++++ ...age_about_sc_code_identification_rules.gwf | 44 ++++++ .../message/message_about_sc_code_tasks.gwf | 44 ++++++ .../message/message_about_tpis.gwf | 44 ++++++ ...message_about_tpis_aims_and_objectives.gwf | 44 ++++++ ...age_about_types_of_intelligent_systems.gwf | 44 ++++++ .../phrase/phrase_about_absolute_concept.gwf | 36 +++++ .../phrase/phrase_about_ai_directions.gwf | 43 ++++++ .../phrase_about_ai_object_of_studying.gwf | 41 ++++++ ...f_relatives_between_different_concepts.gwf | 41 ++++++ ...se_about_artificial_intelligent_system.gwf | 43 ++++++ ...rion_for_selecting_a_class_of_concepts.gwf | 42 ++++++ ...between_absolute_and_relative_concepts.gwf | 35 +++++ ...stem_and_artificial_intelligent_system.gwf | 40 ++++++ ...iff_between_knowledges_and_information.gwf | 35 +++++ ...ss_of_research_object_and_object_class.gwf | 38 +++++ ...f_relatives_between_different_concepts.gwf | 46 ++++++ ...examples_of_sections_and_subject_areas.gwf | 37 +++++ ...requirements_in_sc_code_identification.gwf | 41 ++++++ .../phrase/phrase_about_information.gwf | 35 +++++ ...rase_about_intelligent_computer_system.gwf | 38 +++++ ...bout_intelligent_computer_system_props.gwf | 42 ++++++ .../phrase/phrase_about_knowledges.gwf | 35 +++++ ...hrase_about_main_parts_of_subject_area.gwf | 41 ++++++ .../phrase/phrase_about_nika.gwf | 35 +++++ .../phrase/phrase_about_nika_aims.gwf | 38 +++++ .../phrase/phrase_about_nika_functions.gwf | 39 ++++++ ...se_about_org_and_struct_knowledge_base.gwf | 36 +++++ ...rase_about_ostis_system_knowledge_base.gwf | 44 ++++++ ...bout_ostis_system_opportunity_to_exist.gwf | 37 +++++ .../phrase_about_ostis_systems_advantages.gwf | 39 ++++++ .../phrase_about_ostis_systems_components.gwf | 43 ++++++ .../phrase/phrase_about_relative_concept.gwf | 35 +++++ ...gments_of_knowledge_base_formalization.gwf | 41 ++++++ .../phrase/phrase_about_sc_code.gwf | 38 +++++ ...ase_about_sc_code_identification_rules.gwf | 40 ++++++ .../phrase/phrase_about_sc_code_tasks.gwf | 42 ++++++ .../phrase/phrase_about_tpis.gwf | 35 +++++ .../phrase_about_tpis_aims_and_objectives.gwf | 49 +++++++ ...ase_about_types_of_intelligent_systems.gwf | 42 ++++++ kb/extra/questions_tpis/rrel_entity.gwf | 56 ++++++++ .../rule/rule_absolute_concept.gwf | 131 ++++++++++++++++++ .../rule/rule_ai_directions.gwf | 131 ++++++++++++++++++ .../rule/rule_ai_object_of_studying.gwf | 131 ++++++++++++++++++ ...f_relatives_between_different_concepts.gwf | 131 ++++++++++++++++++ .../rule_artificial_intelligent_system.gwf | 131 ++++++++++++++++++ ...rion_for_selecting_a_class_of_concepts.gwf | 131 ++++++++++++++++++ ...between_absolute_and_relative_concepts.gwf | 131 ++++++++++++++++++ ...stem_and_artificial_intelligent_system.gwf | 131 ++++++++++++++++++ ...iff_between_knowledges_and_information.gwf | 131 ++++++++++++++++++ ...ss_of_research_object_and_object_class.gwf | 131 ++++++++++++++++++ ...f_relatives_between_different_concepts.gwf | 131 ++++++++++++++++++ ...examples_of_sections_and_subject_areas.gwf | 131 ++++++++++++++++++ ...requirements_in_sc_code_identification.gwf | 131 ++++++++++++++++++ .../questions_tpis/rule/rule_information.gwf | 131 ++++++++++++++++++ .../rule/rule_intelligent_computer_system.gwf | 131 ++++++++++++++++++ ...rule_intelligent_computer_system_props.gwf | 131 ++++++++++++++++++ .../questions_tpis/rule/rule_knowledges.gwf | 131 ++++++++++++++++++ .../rule/rule_main_parts_of_subject_area.gwf | 131 ++++++++++++++++++ kb/extra/questions_tpis/rule/rule_nika.gwf | 131 ++++++++++++++++++ .../questions_tpis/rule/rule_nika_aims.gwf | 131 ++++++++++++++++++ .../rule/rule_nika_functions.gwf | 131 ++++++++++++++++++ .../rule_org_and_struct_knowledge_base.gwf | 131 ++++++++++++++++++ .../rule/rule_ostis_system_knowledge_base.gwf | 131 ++++++++++++++++++ ...rule_ostis_system_opportunity_to_exist.gwf | 131 ++++++++++++++++++ .../rule/rule_ostis_systems_advantages.gwf | 131 ++++++++++++++++++ .../rule/rule_ostis_systems_components.gwf | 131 ++++++++++++++++++ .../rule/rule_relative_concept.gwf | 131 ++++++++++++++++++ ...gments_of_knowledge_base_formalization.gwf | 131 ++++++++++++++++++ kb/extra/questions_tpis/rule/rule_sc_code.gwf | 131 ++++++++++++++++++ .../rule_sc_code_identification_rules.gwf | 131 ++++++++++++++++++ .../rule/rule_sc_code_tasks.gwf | 131 ++++++++++++++++++ kb/extra/questions_tpis/rule/rule_tpis.gwf | 131 ++++++++++++++++++ .../rule/rule_tpis_aims_and_objectives.gwf | 131 ++++++++++++++++++ .../rule_types_of_intelligent_systems.gwf | 131 ++++++++++++++++++ .../nika_docs/lab_workshop/lab_workshop.scs | 16 ++- .../concepts/instances/nika_docs/nika.scs | 3 +- 106 files changed, 7406 insertions(+), 5 deletions(-) create mode 100644 kb/extra/questions_tpis/contact.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_absolute_concept.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_ai_directions.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_ai_object_of_studying.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_aims_of_relatives_between_different_concepts.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_artificial_intelligent_system.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_criterion_for_selecting_a_class_of_concepts.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_diff_between_absolute_and_relative_concepts.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_diff_between_knowledges_and_information.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_diff_between_maximum_class_of_research_object_and_object_class.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_examples_of_relatives_between_different_concepts.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_examples_of_sections_and_subject_areas.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_forgotten_requirements_in_sc_code_identification.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_information.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_intelligent_computer_system.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_intelligent_computer_system_props.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_knowledges.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_main_parts_of_subject_area.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_nika.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_nika_aims.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_nika_functions.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_org_and_struct_knowledge_base.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_ostis_system_knowledge_base.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_ostis_system_opportunity_to_exist.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_ostis_systems_advantages.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_ostis_systems_components.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_relative_concept.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_requirements_in_fragments_of_knowledge_base_formalization.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_sc_code.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_sc_code_identification_rules.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_sc_code_tasks.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_tpis.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_tpis_aims_and_objectives.gwf create mode 100644 kb/extra/questions_tpis/message/message_about_types_of_intelligent_systems.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_absolute_concept.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_ai_directions.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_ai_object_of_studying.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_aims_of_relatives_between_different_concepts.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_artificial_intelligent_system.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_criterion_for_selecting_a_class_of_concepts.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_diff_between_absolute_and_relative_concepts.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_diff_between_knowledges_and_information.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_diff_between_maximum_class_of_research_object_and_object_class.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_examples_of_relatives_between_different_concepts.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_examples_of_sections_and_subject_areas.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_forgotten_requirements_in_sc_code_identification.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_information.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_intelligent_computer_system.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_intelligent_computer_system_props.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_knowledges.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_main_parts_of_subject_area.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_nika.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_nika_aims.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_nika_functions.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_org_and_struct_knowledge_base.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_ostis_system_knowledge_base.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_ostis_system_opportunity_to_exist.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_ostis_systems_advantages.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_ostis_systems_components.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_relative_concept.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_requirements_in_fragments_of_knowledge_base_formalization.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_sc_code.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_sc_code_identification_rules.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_sc_code_tasks.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_tpis.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_tpis_aims_and_objectives.gwf create mode 100644 kb/extra/questions_tpis/phrase/phrase_about_types_of_intelligent_systems.gwf create mode 100644 kb/extra/questions_tpis/rrel_entity.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_absolute_concept.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_ai_directions.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_ai_object_of_studying.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_aims_of_relatives_between_different_concepts.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_artificial_intelligent_system.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_criterion_for_selecting_a_class_of_concepts.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_diff_between_absolute_and_relative_concepts.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_diff_between_knowledges_and_information.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_diff_between_maximum_class_of_research_object_and_object_class.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_examples_of_relatives_between_different_concepts.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_examples_of_sections_and_subject_areas.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_forgotten_requirements_in_sc_code_identification.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_information.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_intelligent_computer_system.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_intelligent_computer_system_props.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_knowledges.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_main_parts_of_subject_area.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_nika.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_nika_aims.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_nika_functions.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_org_and_struct_knowledge_base.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_ostis_system_knowledge_base.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_ostis_system_opportunity_to_exist.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_ostis_systems_advantages.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_ostis_systems_components.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_relative_concept.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_requirements_in_fragments_of_knowledge_base_formalization.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_sc_code.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_sc_code_identification_rules.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_sc_code_tasks.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_tpis.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_tpis_aims_and_objectives.gwf create mode 100644 kb/extra/questions_tpis/rule/rule_types_of_intelligent_systems.gwf diff --git a/kb/extra/questions_tpis/contact.gwf b/kb/extra/questions_tpis/contact.gwf new file mode 100644 index 000000000..ea2bc472f --- /dev/null +++ b/kb/extra/questions_tpis/contact.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kb/extra/questions_tpis/message/message_about_absolute_concept.gwf b/kb/extra/questions_tpis/message/message_about_absolute_concept.gwf new file mode 100644 index 000000000..19660be57 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_absolute_concept.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_ai_directions.gwf b/kb/extra/questions_tpis/message/message_about_ai_directions.gwf new file mode 100644 index 000000000..65c5c253d --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_ai_directions.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_ai_object_of_studying.gwf b/kb/extra/questions_tpis/message/message_about_ai_object_of_studying.gwf new file mode 100644 index 000000000..b5f6e2502 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_ai_object_of_studying.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_aims_of_relatives_between_different_concepts.gwf b/kb/extra/questions_tpis/message/message_about_aims_of_relatives_between_different_concepts.gwf new file mode 100644 index 000000000..2eb0f8e45 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_aims_of_relatives_between_different_concepts.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_artificial_intelligent_system.gwf b/kb/extra/questions_tpis/message/message_about_artificial_intelligent_system.gwf new file mode 100644 index 000000000..905873fad --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_artificial_intelligent_system.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_criterion_for_selecting_a_class_of_concepts.gwf b/kb/extra/questions_tpis/message/message_about_criterion_for_selecting_a_class_of_concepts.gwf new file mode 100644 index 000000000..457ce3f6b --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_criterion_for_selecting_a_class_of_concepts.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_diff_between_absolute_and_relative_concepts.gwf b/kb/extra/questions_tpis/message/message_about_diff_between_absolute_and_relative_concepts.gwf new file mode 100644 index 000000000..e9efdba0e --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_diff_between_absolute_and_relative_concepts.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf b/kb/extra/questions_tpis/message/message_about_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf new file mode 100644 index 000000000..59fd7e344 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_diff_between_knowledges_and_information.gwf b/kb/extra/questions_tpis/message/message_about_diff_between_knowledges_and_information.gwf new file mode 100644 index 000000000..2456920f0 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_diff_between_knowledges_and_information.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_diff_between_maximum_class_of_research_object_and_object_class.gwf b/kb/extra/questions_tpis/message/message_about_diff_between_maximum_class_of_research_object_and_object_class.gwf new file mode 100644 index 000000000..469052265 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_diff_between_maximum_class_of_research_object_and_object_class.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_examples_of_relatives_between_different_concepts.gwf b/kb/extra/questions_tpis/message/message_about_examples_of_relatives_between_different_concepts.gwf new file mode 100644 index 000000000..fb2739700 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_examples_of_relatives_between_different_concepts.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_examples_of_sections_and_subject_areas.gwf b/kb/extra/questions_tpis/message/message_about_examples_of_sections_and_subject_areas.gwf new file mode 100644 index 000000000..02f5375c8 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_examples_of_sections_and_subject_areas.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_forgotten_requirements_in_sc_code_identification.gwf b/kb/extra/questions_tpis/message/message_about_forgotten_requirements_in_sc_code_identification.gwf new file mode 100644 index 000000000..d130fbc7c --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_forgotten_requirements_in_sc_code_identification.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_information.gwf b/kb/extra/questions_tpis/message/message_about_information.gwf new file mode 100644 index 000000000..f23a0112a --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_information.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_intelligent_computer_system.gwf b/kb/extra/questions_tpis/message/message_about_intelligent_computer_system.gwf new file mode 100644 index 000000000..b947b569f --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_intelligent_computer_system.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_intelligent_computer_system_props.gwf b/kb/extra/questions_tpis/message/message_about_intelligent_computer_system_props.gwf new file mode 100644 index 000000000..7adcc4cb6 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_intelligent_computer_system_props.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_knowledges.gwf b/kb/extra/questions_tpis/message/message_about_knowledges.gwf new file mode 100644 index 000000000..807b0e1c6 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_knowledges.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_main_parts_of_subject_area.gwf b/kb/extra/questions_tpis/message/message_about_main_parts_of_subject_area.gwf new file mode 100644 index 000000000..d92ebb107 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_main_parts_of_subject_area.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_nika.gwf b/kb/extra/questions_tpis/message/message_about_nika.gwf new file mode 100644 index 000000000..36ce9db58 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_nika.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_nika_aims.gwf b/kb/extra/questions_tpis/message/message_about_nika_aims.gwf new file mode 100644 index 000000000..6ab9a00e5 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_nika_aims.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_nika_functions.gwf b/kb/extra/questions_tpis/message/message_about_nika_functions.gwf new file mode 100644 index 000000000..2d685a1f5 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_nika_functions.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_org_and_struct_knowledge_base.gwf b/kb/extra/questions_tpis/message/message_about_org_and_struct_knowledge_base.gwf new file mode 100644 index 000000000..290c1ccaa --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_org_and_struct_knowledge_base.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_ostis_system_knowledge_base.gwf b/kb/extra/questions_tpis/message/message_about_ostis_system_knowledge_base.gwf new file mode 100644 index 000000000..49e8d1660 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_ostis_system_knowledge_base.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_ostis_system_opportunity_to_exist.gwf b/kb/extra/questions_tpis/message/message_about_ostis_system_opportunity_to_exist.gwf new file mode 100644 index 000000000..090797be1 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_ostis_system_opportunity_to_exist.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_ostis_systems_advantages.gwf b/kb/extra/questions_tpis/message/message_about_ostis_systems_advantages.gwf new file mode 100644 index 000000000..d765b4411 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_ostis_systems_advantages.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_ostis_systems_components.gwf b/kb/extra/questions_tpis/message/message_about_ostis_systems_components.gwf new file mode 100644 index 000000000..279529444 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_ostis_systems_components.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_relative_concept.gwf b/kb/extra/questions_tpis/message/message_about_relative_concept.gwf new file mode 100644 index 000000000..554423038 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_relative_concept.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_requirements_in_fragments_of_knowledge_base_formalization.gwf b/kb/extra/questions_tpis/message/message_about_requirements_in_fragments_of_knowledge_base_formalization.gwf new file mode 100644 index 000000000..dd2bc4df4 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_requirements_in_fragments_of_knowledge_base_formalization.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_sc_code.gwf b/kb/extra/questions_tpis/message/message_about_sc_code.gwf new file mode 100644 index 000000000..e17496996 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_sc_code.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_sc_code_identification_rules.gwf b/kb/extra/questions_tpis/message/message_about_sc_code_identification_rules.gwf new file mode 100644 index 000000000..d88fcd4e9 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_sc_code_identification_rules.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_sc_code_tasks.gwf b/kb/extra/questions_tpis/message/message_about_sc_code_tasks.gwf new file mode 100644 index 000000000..6f8b10be0 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_sc_code_tasks.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_tpis.gwf b/kb/extra/questions_tpis/message/message_about_tpis.gwf new file mode 100644 index 000000000..c37fe2817 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_tpis.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_tpis_aims_and_objectives.gwf b/kb/extra/questions_tpis/message/message_about_tpis_aims_and_objectives.gwf new file mode 100644 index 000000000..c02733ca9 --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_tpis_aims_and_objectives.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/message/message_about_types_of_intelligent_systems.gwf b/kb/extra/questions_tpis/message/message_about_types_of_intelligent_systems.gwf new file mode 100644 index 000000000..898a59b9d --- /dev/null +++ b/kb/extra/questions_tpis/message/message_about_types_of_intelligent_systems.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_absolute_concept.gwf b/kb/extra/questions_tpis/phrase/phrase_about_absolute_concept.gwf new file mode 100644 index 000000000..4d2aa502e --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_absolute_concept.gwf @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_ai_directions.gwf b/kb/extra/questions_tpis/phrase/phrase_about_ai_directions.gwf new file mode 100644 index 000000000..66d6b5b62 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_ai_directions.gwf @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_ai_object_of_studying.gwf b/kb/extra/questions_tpis/phrase/phrase_about_ai_object_of_studying.gwf new file mode 100644 index 000000000..a9fb171e4 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_ai_object_of_studying.gwf @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_aims_of_relatives_between_different_concepts.gwf b/kb/extra/questions_tpis/phrase/phrase_about_aims_of_relatives_between_different_concepts.gwf new file mode 100644 index 000000000..d98226b36 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_aims_of_relatives_between_different_concepts.gwf @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_artificial_intelligent_system.gwf b/kb/extra/questions_tpis/phrase/phrase_about_artificial_intelligent_system.gwf new file mode 100644 index 000000000..7a778802e --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_artificial_intelligent_system.gwf @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_criterion_for_selecting_a_class_of_concepts.gwf b/kb/extra/questions_tpis/phrase/phrase_about_criterion_for_selecting_a_class_of_concepts.gwf new file mode 100644 index 000000000..f5d707180 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_criterion_for_selecting_a_class_of_concepts.gwf @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_diff_between_absolute_and_relative_concepts.gwf b/kb/extra/questions_tpis/phrase/phrase_about_diff_between_absolute_and_relative_concepts.gwf new file mode 100644 index 000000000..fb830592c --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_diff_between_absolute_and_relative_concepts.gwf @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf b/kb/extra/questions_tpis/phrase/phrase_about_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf new file mode 100644 index 000000000..5ba850412 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_diff_between_knowledges_and_information.gwf b/kb/extra/questions_tpis/phrase/phrase_about_diff_between_knowledges_and_information.gwf new file mode 100644 index 000000000..7e2ddbb61 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_diff_between_knowledges_and_information.gwf @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_diff_between_maximum_class_of_research_object_and_object_class.gwf b/kb/extra/questions_tpis/phrase/phrase_about_diff_between_maximum_class_of_research_object_and_object_class.gwf new file mode 100644 index 000000000..75ec45a1a --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_diff_between_maximum_class_of_research_object_and_object_class.gwf @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_examples_of_relatives_between_different_concepts.gwf b/kb/extra/questions_tpis/phrase/phrase_about_examples_of_relatives_between_different_concepts.gwf new file mode 100644 index 000000000..655320180 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_examples_of_relatives_between_different_concepts.gwf @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_examples_of_sections_and_subject_areas.gwf b/kb/extra/questions_tpis/phrase/phrase_about_examples_of_sections_and_subject_areas.gwf new file mode 100644 index 000000000..f6be62002 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_examples_of_sections_and_subject_areas.gwf @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_forgotten_requirements_in_sc_code_identification.gwf b/kb/extra/questions_tpis/phrase/phrase_about_forgotten_requirements_in_sc_code_identification.gwf new file mode 100644 index 000000000..bb7ec6cb0 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_forgotten_requirements_in_sc_code_identification.gwf @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_information.gwf b/kb/extra/questions_tpis/phrase/phrase_about_information.gwf new file mode 100644 index 000000000..0ecbe8760 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_information.gwf @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_intelligent_computer_system.gwf b/kb/extra/questions_tpis/phrase/phrase_about_intelligent_computer_system.gwf new file mode 100644 index 000000000..194e74483 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_intelligent_computer_system.gwf @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_intelligent_computer_system_props.gwf b/kb/extra/questions_tpis/phrase/phrase_about_intelligent_computer_system_props.gwf new file mode 100644 index 000000000..72eecb986 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_intelligent_computer_system_props.gwf @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_knowledges.gwf b/kb/extra/questions_tpis/phrase/phrase_about_knowledges.gwf new file mode 100644 index 000000000..db2d5a539 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_knowledges.gwf @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_main_parts_of_subject_area.gwf b/kb/extra/questions_tpis/phrase/phrase_about_main_parts_of_subject_area.gwf new file mode 100644 index 000000000..df095a203 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_main_parts_of_subject_area.gwf @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_nika.gwf b/kb/extra/questions_tpis/phrase/phrase_about_nika.gwf new file mode 100644 index 000000000..c0e32ca08 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_nika.gwf @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_nika_aims.gwf b/kb/extra/questions_tpis/phrase/phrase_about_nika_aims.gwf new file mode 100644 index 000000000..5b8632e6e --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_nika_aims.gwf @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_nika_functions.gwf b/kb/extra/questions_tpis/phrase/phrase_about_nika_functions.gwf new file mode 100644 index 000000000..42a730e51 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_nika_functions.gwf @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_org_and_struct_knowledge_base.gwf b/kb/extra/questions_tpis/phrase/phrase_about_org_and_struct_knowledge_base.gwf new file mode 100644 index 000000000..fd8461dd4 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_org_and_struct_knowledge_base.gwf @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_ostis_system_knowledge_base.gwf b/kb/extra/questions_tpis/phrase/phrase_about_ostis_system_knowledge_base.gwf new file mode 100644 index 000000000..dc60382cb --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_ostis_system_knowledge_base.gwf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_ostis_system_opportunity_to_exist.gwf b/kb/extra/questions_tpis/phrase/phrase_about_ostis_system_opportunity_to_exist.gwf new file mode 100644 index 000000000..e342cf7f3 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_ostis_system_opportunity_to_exist.gwf @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_ostis_systems_advantages.gwf b/kb/extra/questions_tpis/phrase/phrase_about_ostis_systems_advantages.gwf new file mode 100644 index 000000000..bcb8ea5dc --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_ostis_systems_advantages.gwf @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_ostis_systems_components.gwf b/kb/extra/questions_tpis/phrase/phrase_about_ostis_systems_components.gwf new file mode 100644 index 000000000..f06264110 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_ostis_systems_components.gwf @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_relative_concept.gwf b/kb/extra/questions_tpis/phrase/phrase_about_relative_concept.gwf new file mode 100644 index 000000000..4e231e644 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_relative_concept.gwf @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_requirements_in_fragments_of_knowledge_base_formalization.gwf b/kb/extra/questions_tpis/phrase/phrase_about_requirements_in_fragments_of_knowledge_base_formalization.gwf new file mode 100644 index 000000000..a25b50f1b --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_requirements_in_fragments_of_knowledge_base_formalization.gwf @@ -0,0 +1,41 @@ + + + + + , то <заключение>". Например, правило "Если Человек(X), то Имеет_Домашнего_Животного(X)" утверждает, что если X является человеком, то X имеет домашнего животного. +Запросы: Запросы представляют собой вопросы или запросы на получение информации из базы знаний. Они обычно записываются в формате "Запрос(аргументы)", где запрос - это вопрос или цель, а аргументы - это сущности, к которым запрос применяется. Например, запрос "Есть_Ли_Домашнее_Животное(Джон)" спрашивает, есть ли у Джона домашнее животное. +Примеры: Примеры представляют собой конкретные случаи, которые иллюстрируют знания или правила в базе. Они могут использоваться для обучения модели или для проверки ее работы. +Ограничения и предположения: База знаний может содержать ограничения или предположения, которые определяют контекст или условия, в которых знания применяются. Например, предположение "Все люди могут дышать" устанавливает общее свойство для всех людей. +Это лишь некоторые из фрагментов, которые могут присутствовать при формализации базы знаний. Фактические фрагменты и их формат зависят от используемого формализма или языка программирования для представления базы знаний.]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_sc_code.gwf b/kb/extra/questions_tpis/phrase/phrase_about_sc_code.gwf new file mode 100644 index 000000000..fd7dc6e05 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_sc_code.gwf @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_sc_code_identification_rules.gwf b/kb/extra/questions_tpis/phrase/phrase_about_sc_code_identification_rules.gwf new file mode 100644 index 000000000..f937e26fc --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_sc_code_identification_rules.gwf @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_sc_code_tasks.gwf b/kb/extra/questions_tpis/phrase/phrase_about_sc_code_tasks.gwf new file mode 100644 index 000000000..0929736d0 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_sc_code_tasks.gwf @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_tpis.gwf b/kb/extra/questions_tpis/phrase/phrase_about_tpis.gwf new file mode 100644 index 000000000..49f20af2b --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_tpis.gwf @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_tpis_aims_and_objectives.gwf b/kb/extra/questions_tpis/phrase/phrase_about_tpis_aims_and_objectives.gwf new file mode 100644 index 000000000..773908109 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_tpis_aims_and_objectives.gwf @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/phrase/phrase_about_types_of_intelligent_systems.gwf b/kb/extra/questions_tpis/phrase/phrase_about_types_of_intelligent_systems.gwf new file mode 100644 index 000000000..01fefd420 --- /dev/null +++ b/kb/extra/questions_tpis/phrase/phrase_about_types_of_intelligent_systems.gwf @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rrel_entity.gwf b/kb/extra/questions_tpis/rrel_entity.gwf new file mode 100644 index 000000000..80f2ef36e --- /dev/null +++ b/kb/extra/questions_tpis/rrel_entity.gwf @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kb/extra/questions_tpis/rule/rule_absolute_concept.gwf b/kb/extra/questions_tpis/rule/rule_absolute_concept.gwf new file mode 100644 index 000000000..ec91517ca --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_absolute_concept.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_ai_directions.gwf b/kb/extra/questions_tpis/rule/rule_ai_directions.gwf new file mode 100644 index 000000000..56e2d4cd8 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_ai_directions.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_ai_object_of_studying.gwf b/kb/extra/questions_tpis/rule/rule_ai_object_of_studying.gwf new file mode 100644 index 000000000..88ab23b57 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_ai_object_of_studying.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_aims_of_relatives_between_different_concepts.gwf b/kb/extra/questions_tpis/rule/rule_aims_of_relatives_between_different_concepts.gwf new file mode 100644 index 000000000..699371c4b --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_aims_of_relatives_between_different_concepts.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_artificial_intelligent_system.gwf b/kb/extra/questions_tpis/rule/rule_artificial_intelligent_system.gwf new file mode 100644 index 000000000..0ed30adcd --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_artificial_intelligent_system.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_criterion_for_selecting_a_class_of_concepts.gwf b/kb/extra/questions_tpis/rule/rule_criterion_for_selecting_a_class_of_concepts.gwf new file mode 100644 index 000000000..ebd5b5baf --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_criterion_for_selecting_a_class_of_concepts.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_diff_between_absolute_and_relative_concepts.gwf b/kb/extra/questions_tpis/rule/rule_diff_between_absolute_and_relative_concepts.gwf new file mode 100644 index 000000000..6bdf13319 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_diff_between_absolute_and_relative_concepts.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf b/kb/extra/questions_tpis/rule/rule_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf new file mode 100644 index 000000000..09a7cbbf3 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_diff_between_intelligent_computer_system_and_artificial_intelligent_system.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_diff_between_knowledges_and_information.gwf b/kb/extra/questions_tpis/rule/rule_diff_between_knowledges_and_information.gwf new file mode 100644 index 000000000..228461411 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_diff_between_knowledges_and_information.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_diff_between_maximum_class_of_research_object_and_object_class.gwf b/kb/extra/questions_tpis/rule/rule_diff_between_maximum_class_of_research_object_and_object_class.gwf new file mode 100644 index 000000000..4dc49f543 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_diff_between_maximum_class_of_research_object_and_object_class.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_examples_of_relatives_between_different_concepts.gwf b/kb/extra/questions_tpis/rule/rule_examples_of_relatives_between_different_concepts.gwf new file mode 100644 index 000000000..9dac0f2aa --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_examples_of_relatives_between_different_concepts.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_examples_of_sections_and_subject_areas.gwf b/kb/extra/questions_tpis/rule/rule_examples_of_sections_and_subject_areas.gwf new file mode 100644 index 000000000..63870c11b --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_examples_of_sections_and_subject_areas.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_forgotten_requirements_in_sc_code_identification.gwf b/kb/extra/questions_tpis/rule/rule_forgotten_requirements_in_sc_code_identification.gwf new file mode 100644 index 000000000..3a510a91c --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_forgotten_requirements_in_sc_code_identification.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_information.gwf b/kb/extra/questions_tpis/rule/rule_information.gwf new file mode 100644 index 000000000..d0ebcec4e --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_information.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_intelligent_computer_system.gwf b/kb/extra/questions_tpis/rule/rule_intelligent_computer_system.gwf new file mode 100644 index 000000000..a6b7147ff --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_intelligent_computer_system.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_intelligent_computer_system_props.gwf b/kb/extra/questions_tpis/rule/rule_intelligent_computer_system_props.gwf new file mode 100644 index 000000000..7ce88c9eb --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_intelligent_computer_system_props.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_knowledges.gwf b/kb/extra/questions_tpis/rule/rule_knowledges.gwf new file mode 100644 index 000000000..0330a0948 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_knowledges.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_main_parts_of_subject_area.gwf b/kb/extra/questions_tpis/rule/rule_main_parts_of_subject_area.gwf new file mode 100644 index 000000000..dc6cfa89e --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_main_parts_of_subject_area.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_nika.gwf b/kb/extra/questions_tpis/rule/rule_nika.gwf new file mode 100644 index 000000000..28d95a5aa --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_nika.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_nika_aims.gwf b/kb/extra/questions_tpis/rule/rule_nika_aims.gwf new file mode 100644 index 000000000..696093d8f --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_nika_aims.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_nika_functions.gwf b/kb/extra/questions_tpis/rule/rule_nika_functions.gwf new file mode 100644 index 000000000..0a5e7e26b --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_nika_functions.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_org_and_struct_knowledge_base.gwf b/kb/extra/questions_tpis/rule/rule_org_and_struct_knowledge_base.gwf new file mode 100644 index 000000000..af535a729 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_org_and_struct_knowledge_base.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_ostis_system_knowledge_base.gwf b/kb/extra/questions_tpis/rule/rule_ostis_system_knowledge_base.gwf new file mode 100644 index 000000000..aa0a91055 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_ostis_system_knowledge_base.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_ostis_system_opportunity_to_exist.gwf b/kb/extra/questions_tpis/rule/rule_ostis_system_opportunity_to_exist.gwf new file mode 100644 index 000000000..d344fcd45 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_ostis_system_opportunity_to_exist.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_ostis_systems_advantages.gwf b/kb/extra/questions_tpis/rule/rule_ostis_systems_advantages.gwf new file mode 100644 index 000000000..e22fd7f6f --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_ostis_systems_advantages.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_ostis_systems_components.gwf b/kb/extra/questions_tpis/rule/rule_ostis_systems_components.gwf new file mode 100644 index 000000000..042a4e3c5 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_ostis_systems_components.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_relative_concept.gwf b/kb/extra/questions_tpis/rule/rule_relative_concept.gwf new file mode 100644 index 000000000..64ecea281 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_relative_concept.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_requirements_in_fragments_of_knowledge_base_formalization.gwf b/kb/extra/questions_tpis/rule/rule_requirements_in_fragments_of_knowledge_base_formalization.gwf new file mode 100644 index 000000000..11aa3068a --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_requirements_in_fragments_of_knowledge_base_formalization.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_sc_code.gwf b/kb/extra/questions_tpis/rule/rule_sc_code.gwf new file mode 100644 index 000000000..aaf03bfe8 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_sc_code.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_sc_code_identification_rules.gwf b/kb/extra/questions_tpis/rule/rule_sc_code_identification_rules.gwf new file mode 100644 index 000000000..e13a76407 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_sc_code_identification_rules.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_sc_code_tasks.gwf b/kb/extra/questions_tpis/rule/rule_sc_code_tasks.gwf new file mode 100644 index 000000000..ea18137b1 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_sc_code_tasks.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_tpis.gwf b/kb/extra/questions_tpis/rule/rule_tpis.gwf new file mode 100644 index 000000000..188294803 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_tpis.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_tpis_aims_and_objectives.gwf b/kb/extra/questions_tpis/rule/rule_tpis_aims_and_objectives.gwf new file mode 100644 index 000000000..cd13a70c2 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_tpis_aims_and_objectives.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/extra/questions_tpis/rule/rule_types_of_intelligent_systems.gwf b/kb/extra/questions_tpis/rule/rule_types_of_intelligent_systems.gwf new file mode 100644 index 000000000..8d93e80b5 --- /dev/null +++ b/kb/extra/questions_tpis/rule/rule_types_of_intelligent_systems.gwf @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kb/section_subject_domain_of_intelligent_study_systems/concepts/instances/nika_docs/lab_workshop/lab_workshop.scs b/kb/section_subject_domain_of_intelligent_study_systems/concepts/instances/nika_docs/lab_workshop/lab_workshop.scs index 508679f32..fafe9d263 100644 --- a/kb/section_subject_domain_of_intelligent_study_systems/concepts/instances/nika_docs/lab_workshop/lab_workshop.scs +++ b/kb/section_subject_domain_of_intelligent_study_systems/concepts/instances/nika_docs/lab_workshop/lab_workshop.scs @@ -47,7 +47,9 @@ nika_lab_work_1
  • Уметь отвечать на вопросы и решать задачи, указанные в конце лабораторной работы.
  • После одобрения преподавателем результатов работы залить изменения в свой форк проекта NIKA на github.
  • - ] + +

    Краткое видео:

    + ] (* <- lang_ru;; => nrel_format: format_html;; *); => nrel_deadline: [до 1 октября текущего года] @@ -76,7 +78,9 @@ nika_lab_work_2
  • По результатам работы составить отчёт, где указать цель, задание, вариант и показать тестирование сценария диалога.
  • Уметь отвечать на вопросы и решать задачи, указанные в конце лабораторной работы.
  • После одобрения преподавателем результатов работы залить изменения в свой форк проекта NIKA на github.
  • - ] + +

    Краткое видео:

    + ] (* <- lang_ru;; => nrel_format: format_html;; *); => nrel_deadline: [до 22 октября текущего года] @@ -110,7 +114,9 @@ nika_lab_work_3
  • По результатам работы составить отчёт, где указать цель, задание, вариант и показать тестирование сценария диалога.
  • Уметь отвечать на вопросы и решать задачи, указанные в конце лабораторной работы.
  • После одобрения преподавателем результатов работы залить изменения в свой форк проекта NIKA на github.
  • - ] + +

    Краткое видео:

    + ] (* <- lang_ru;; => nrel_format: format_html;; *); => nrel_deadline: [до 12 ноября текущего года] @@ -158,7 +164,9 @@ nika_lab_work_4
  • Уметь отвечать на вопросы и решать задачи, указанные в конце лабораторной работы.
  • После одобрения преподавателем результатов работы залить изменения в свой форк проекта NIKA на github.
  • - ] + +

    Краткое видео:

    + ] (* <- lang_ru;; => nrel_format: format_html;; *); => nrel_deadline: [до конца текущего семестра] diff --git a/kb/section_subject_domain_of_intelligent_study_systems/concepts/instances/nika_docs/nika.scs b/kb/section_subject_domain_of_intelligent_study_systems/concepts/instances/nika_docs/nika.scs index 4981daadc..73a55f1fc 100644 --- a/kb/section_subject_domain_of_intelligent_study_systems/concepts/instances/nika_docs/nika.scs +++ b/kb/section_subject_domain_of_intelligent_study_systems/concepts/instances/nika_docs/nika.scs @@ -57,7 +57,8 @@ nika
  • "Какая погода в Минске?";
  • а также Ника может научиться отвечать на любые новые вопросы.
  • - ] + + ] (* <- lang_ru;; => nrel_format: format_html;; *);;