pattern matching - перевод на русский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

pattern matching - перевод на русский

ACT OF CHECKING A GIVEN SEQUENCE OF TOKENS FOR THE PRESENCE OF THE CONSTITUENTS OF SOME PATTERN
Pattern-matching; Pattern match; Pattern matches; Pattern Matching; Pattern matching (functional programming); Structural pattern matching
Найдено результатов: 649
pattern matching         
сопоставление с образцом, отождествление
pattern matching         

общая лексика

сопоставление с образцом

операция, широко применяемая в языках ИИ

Смотрите также

AI; pattern; pattern matcher; Prolog

pattern-matching         

общая лексика

сличение с образцом

pattern matching         
сравнение или сопоставление изображений
pattern cutting         
  • Digital home sewing pattern
  • Marker-making by computer
  • Student tracing pattern onto fabric
  • Fitting a nettle/canvas-fabric on a [[dress form]]
  • Storage of patterns
  • Students cutting patterns in a sewing class
TEMPLATE FROM WHICH THE PARTS OF A GARMENT ARE TRACED ONTO FABRIC BEFORE BEING CUT OUT
Pattern making book; Pattern-making book; Patternmaking book; Sewing pattern; Dress pattern; Dress-maker's pattern; Pattern cutting; Pattern drafting; Pattern making
раскрой листового материала (операция)
matching grant         
DONATION BASED ON OTHERS' DONATIONS
Matching fund; Matching gift; Matching gifts; Matching donations; Matching donation; Matching git; Match funding; Matched funding; Donation matching; Matching grants; Matching grant; Match fund
долевая субсидия (когда средства федерального бюджета покрывают лишь часть расходов низшей административной единицы)
pattern cutting         
  • Digital home sewing pattern
  • Marker-making by computer
  • Student tracing pattern onto fabric
  • Fitting a nettle/canvas-fabric on a [[dress form]]
  • Storage of patterns
  • Students cutting patterns in a sewing class
TEMPLATE FROM WHICH THE PARTS OF A GARMENT ARE TRACED ONTO FABRIC BEFORE BEING CUT OUT
Pattern making book; Pattern-making book; Patternmaking book; Sewing pattern; Dress pattern; Dress-maker's pattern; Pattern cutting; Pattern drafting; Pattern making

строительное дело

раскрой листового материала (операция)

pattern-maker         
  • The top and bottom halves of a sand casting mould showing the cavity prepared by patterns.  Cores to accommodate holes can be seen in the bottom half of the mould, which is called the ''drag''. The top half of the mould is called the ''cope''.
FORM USED IN CASTING TO REPLICATE A SHAPE
Pattern (foundry); Pattern-maker; Patternmaker (engineering)
pattern-maker noun metal. модельщик
pattern-maker         
  • The top and bottom halves of a sand casting mould showing the cavity prepared by patterns.  Cores to accommodate holes can be seen in the bottom half of the mould, which is called the ''drag''. The top half of the mould is called the ''cope''.
FORM USED IN CASTING TO REPLICATE A SHAPE
Pattern (foundry); Pattern-maker; Patternmaker (engineering)

['pætnmeikə]

существительное

общая лексика

модельер

модельщик (в металлургии)

металлургия

модельщик

pattern recognition         
  • The face was automatically detected]] by special software.
BRANCH OF MACHINE LEARNING
Pattern Recognition; Pattern detection; Pattern recognition, visual; Machine pattern recognition; Pattern analysis; Pattern-recognition; Pattern Recognition and Learning; Pattern recognition and learning; Pattern recognition (machine learning); Algorithms for pattern recognition; List of algorithms for pattern recognition; Automated pattern recognition; Automatic pattern recognition; Statistical pattern recognition; Applications of pattern recognition; Fuzzy pattern recognition; List of pattern recognition algorithms

['pætnrekəg'niʃ(ə)n]

общая лексика

распознавание образов

идентификация графических изображений с помощью компьютерных технологий. Используется, в биометрических методах контроля доступа для распознавания голоса, отпечатков пальцев, фотографий и. п

Определение

pattern matching
1. A function is defined to take arguments of a particular type, form or value. When applying the function to its actual arguments it is necessary to match the type, form or value of the actual arguments against the formal arguments in some definition. For example, the function length [] = 0 length (x:xs) = 1 + length xs uses pattern matching in its argument to distinguish a null list from a non-null one. There are well known algorithm for translating pattern matching into conditional expressions such as "if" or "case". E.g. the above function could be transformed to length l = case l of [] -> 0 x:xs -> 1 : length xs Pattern matching is usually performed in textual order though there are languages which match more specific patterns before less specific ones. 2. Descriptive of a type of language or utility such as awk or Perl which is suited to searching for strings or patterns in input data, usually using some kind of {regular expression}. (1994-11-28)

Википедия

Pattern matching

In computer science, pattern matching is the act of checking a given sequence of tokens for the presence of the constituents of some pattern. In contrast to pattern recognition, the match usually has to be exact: "either it will or will not be a match." The patterns generally have the form of either sequences or tree structures. Uses of pattern matching include outputting the locations (if any) of a pattern within a token sequence, to output some component of the matched pattern, and to substitute the matching pattern with some other token sequence (i.e., search and replace).

Sequence patterns (e.g., a text string) are often described using regular expressions and matched using techniques such as backtracking.

Tree patterns are used in some programming languages as a general tool to process data based on its structure, e.g. C#, F#, Haskell, ML, Python, Ruby, Rust, Scala, Swift and the symbolic mathematics language Mathematica have special syntax for expressing tree patterns and a language construct for conditional execution and value retrieval based on it.

Often it is possible to give alternative patterns that are tried one by one, which yields a powerful conditional programming construct. Pattern matching sometimes includes support for guards.

Как переводится pattern matching на Русский язык