Browse Wiki & Semantic Web

Jump to: navigation, search
Http://dbpedia.org/resource/Adaptive algorithm
  This page has no properties.
hide properties that link here 
  No properties link to this page.
 
http://dbpedia.org/resource/Adaptive_algorithm
http://dbpedia.org/ontology/abstract Un algorithme adaptatif est un algorithme Un algorithme adaptatif est un algorithme qui est capable de changer automatiquement son comportement en fonction de son contexte d’exécution pour atteindre des performances optimales. Les changements peuvent être sur les données manipulées par l’algorithme, des paramètres de configurations de l’environnement d’exécution et de l'occupation des ressources. Ces algorithmes sont des algorithmes au sens classique, le terme adaptatif est ici utilisé pour souligner le fait que le comportement de l'algorithme peut varier de façon importante selon l'environnement. On parle par exemple d'apprentissage adaptatif pour le boosting en apprentissage automatique (par exemple l'algorithme Adaboost), de filtrage adaptatif en traitement du signal et en géométrie algorithmique.t du signal et en géométrie algorithmique. , An adaptive algorithm is an algorithm thatAn adaptive algorithm is an algorithm that changes its behavior at the time it is run, based on information available and on a priori defined reward mechanism (or criterion). Such information could be the story of recently received data, information on the available computational resources, or other run-time acquired (or a priori known) information related to the environment in which it operates. Among the most used adaptive algorithms is the Widrow-Hoff’s least mean squares (LMS), which represents a class of stochastic gradient-descent algorithms used in adaptive filtering and machine learning. In adaptive filtering the LMS is used to mimic a desired filter by finding the filter coefficients that relate to producing the least mean square of the error signal (difference between the desired and the actual signal). For example, , using no additional memory is O(n lg n) but given O(n) memory, it can be O(n) in time. As implemented by the C++ Standard Library, stable_partition is adaptive and so it acquires as much memory as it can get (up to what it would need at most) and applies the algorithm using that available memory. Another example is adaptive sort, whose behavior changes upon the presortedness of its input. An example of an adaptive algorithm in radar systems is the constant false alarm rate (CFAR) detector. In machine learning and optimization, many algorithms are adaptive or have adaptive variants, which usually means that the algorithm parameters such as learning rate are automatically adjusted according to statistics about the optimisation thus far (e.g. the rate of convergence). Examples include adaptive simulated annealing, adaptive coordinate descent, adaptive quadrature, AdaBoost, Adagrad, Adadelta, RMSprop, and Adam. In data compression, adaptive coding algorithms such as Adaptive Huffman coding or Prediction by partial matching can take a stream of data as input, and adapt their compression technique based on the symbols that they have already encountered. In signal processing, the Adaptive Transform Acoustic Coding (ATRAC) codec used in MiniDisc recorders is called "adaptive" because the window length (the size of an audio "chunk") can change according to the nature of the sound being compressed, to try to achieve the best-sounding compression strategy.ve the best-sounding compression strategy. , Los algoritmos adaptativos son aquellos quLos algoritmos adaptativos son aquellos que modifican su conducta de forma automática durante su ejecución,​ atendiendo a los cambios que se producen en su entorno o en el propio programa. También puede modificar su comportamiento basado en la información disponible y en un mecanismo (o criterio) de recompensa definido a priori. Dicha información puede ser la historia de los datos recibidos recientemente, información sobre los recursos computacionales disponibles, u otra información adquirida en tiempo de ejecución relacionada con el entorno en el que opera. Un ejemplo de ellos es el algoritmo de ordenamiento , que al principio ordena los elementos utilizando el algoritmo quicksort, y que cambia a heapsort si percibe que se demora más de lo habitual (quicksort suele ordenar un array de elementos en O(n·log n) aunque tiene un orden de O(n2) en su peor caso). Los algoritmos adaptativos se usan en multitud de campos como, por ejemplo, el control o el procesado de señal. Entre los algoritmos adaptativos más utilizados también está el Filtro de mínimos cuadrados medios, que representa una clase de algoritmos estocásticos de ascenso de gradiente utilizados en el filtrado adaptativo y el aprendizaje automático. En el filtrado adaptativo, el LMS se utiliza para imitar un filtro deseado encontrando los coeficientes del filtro que se relacionan con la producción del menor cuadrado medio de la señal de error (diferencia entre la señal deseada y la real). Otro tipo de algoritmos adaptativos serían los filtros digitales adaptitivos que podrán ser tanto FIR como IIR que seránaquellos cuyos coeficientes no permanezcan constantes sino que son actualizados periódicamente por un algoritmo adaptativo. En general, un filtro digital adaptativo consta de dos partes: un filtro digital pero de coeficientes variables que procesa las señales deseadas, y un algoritmo adaptativo encargado de ajustar los coeficientes de dicho filtro. Otro ejemplo de algoritmo adaptativo en los sistemas de radar es el índice de falsa alarma constante (CFAR). En aprendizaje automático y optimización, muchos algoritmos son adaptativos o tienen variantes adaptativas, lo que suele significar que los parámetros del algoritmo como la se ajustan automáticamente en función de las estadísticas sobre la optimización hasta el momento (por ejemplo ).​ En la compresión de datos, los algoritmos de como la o la pueden tomar un flujo de datos como entrada, y adaptar su técnica de compresión basándose en los símbolos que ya han encontrado. ​ En procesamiento de señales, el (ATRAC) utilizado en las grabadoras de MiniDisc se denomina "adaptativo" porque la longitud de la ventana (el tamaño de un "trozo" de audio) puede cambiar según la naturaleza del sonido que se comprime, para intentar conseguir la estrategia de compresión que mejor suene. estrategia de compresión que mejor suene. , Адаптивний алгоритм — алгоритм, зміст якого змінюється з урахуванням вхідної інформації. Застосовується, як правило, в .
http://dbpedia.org/ontology/wikiPageExternalLink https://en.cppreference.com/w/cpp/algorithm/stable_partition +
http://dbpedia.org/ontology/wikiPageID 8286430
http://dbpedia.org/ontology/wikiPageLength 4116
http://dbpedia.org/ontology/wikiPageRevisionID 1055313223
http://dbpedia.org/ontology/wikiPageWikiLink http://dbpedia.org/resource/Data_compression + , http://dbpedia.org/resource/Prediction_by_partial_matching + , http://dbpedia.org/resource/Constant_false_alarm_rate + , http://dbpedia.org/resource/Signal_processing + , http://dbpedia.org/resource/Adaptive_coordinate_descent + , http://dbpedia.org/resource/Adaptive_Transform_Acoustic_Coding + , http://dbpedia.org/resource/Learning_rate + , http://dbpedia.org/resource/Stochastic_gradient_descent + , http://dbpedia.org/resource/Category:Algorithms + , http://dbpedia.org/resource/C%2B%2B_Standard_Library + , http://dbpedia.org/resource/Algorithm + , http://dbpedia.org/resource/Optimization + , http://dbpedia.org/resource/Stable_partition + , http://dbpedia.org/resource/Machine_learning + , http://dbpedia.org/resource/AdaBoost + , http://dbpedia.org/resource/Adaptive_Huffman_coding + , http://dbpedia.org/resource/MiniDisc + , http://dbpedia.org/resource/Adaptive_sort + , http://dbpedia.org/resource/Radar + , http://dbpedia.org/resource/Adaptive_filter + , http://dbpedia.org/resource/Adaptive_quadrature + , http://dbpedia.org/resource/Adaptive_coding + , http://dbpedia.org/resource/Adaptive_simulated_annealing + , http://dbpedia.org/resource/Adaptive_grammar + , http://dbpedia.org/resource/Least_mean_squares_filter + , http://dbpedia.org/resource/Adaptive_optimization + , http://dbpedia.org/resource/Adaptation_%28computer_science%29 +
http://dbpedia.org/property/wikiPageUsesTemplate http://dbpedia.org/resource/Template:Reflist + , http://dbpedia.org/resource/Template:Soft-eng-stub + , http://dbpedia.org/resource/Template:Refimprove +
http://purl.org/dc/terms/subject http://dbpedia.org/resource/Category:Algorithms +
http://purl.org/linguistics/gold/hypernym http://dbpedia.org/resource/Algorithm +
http://www.w3.org/ns/prov#wasDerivedFrom http://en.wikipedia.org/wiki/Adaptive_algorithm?oldid=1055313223&ns=0 +
http://xmlns.com/foaf/0.1/isPrimaryTopicOf http://en.wikipedia.org/wiki/Adaptive_algorithm +
owl:sameAs http://www.wikidata.org/entity/Q1988072 + , http://fa.dbpedia.org/resource/%D8%A7%D9%84%DA%AF%D9%88%D8%B1%DB%8C%D8%AA%D9%85%E2%80%8C%D9%87%D8%A7%DB%8C_%D8%AA%D8%B7%D8%A8%DB%8C%D9%82%DB%8C + , http://uk.dbpedia.org/resource/%D0%90%D0%B4%D0%B0%D0%BF%D1%82%D0%B8%D0%B2%D0%BD%D0%B8%D0%B9_%D0%B0%D0%BB%D0%B3%D0%BE%D1%80%D0%B8%D1%82%D0%BC + , http://dbpedia.org/resource/Adaptive_algorithm + , https://global.dbpedia.org/id/u2kB + , http://fr.dbpedia.org/resource/Algorithme_adaptatif + , http://rdf.freebase.com/ns/m.026z2cs + , http://yago-knowledge.org/resource/Adaptive_algorithm + , http://es.dbpedia.org/resource/Algoritmo_adaptativo +
rdf:type http://dbpedia.org/class/yago/Activity100407535 + , http://dbpedia.org/class/yago/Abstraction100002137 + , http://dbpedia.org/class/yago/Algorithm105847438 + , http://dbpedia.org/ontology/Software + , http://dbpedia.org/class/yago/WikicatAlgorithms + , http://dbpedia.org/class/yago/Procedure101023820 + , http://dbpedia.org/class/yago/Rule105846932 + , http://dbpedia.org/class/yago/YagoPermanentlyLocatedEntity + , http://dbpedia.org/class/yago/PsychologicalFeature100023100 + , http://dbpedia.org/class/yago/Event100029378 + , http://dbpedia.org/class/yago/Act100030358 +
rdfs:comment Адаптивний алгоритм — алгоритм, зміст якого змінюється з урахуванням вхідної інформації. Застосовується, як правило, в . , An adaptive algorithm is an algorithm thatAn adaptive algorithm is an algorithm that changes its behavior at the time it is run, based on information available and on a priori defined reward mechanism (or criterion). Such information could be the story of recently received data, information on the available computational resources, or other run-time acquired (or a priori known) information related to the environment in which it operates. An example of an adaptive algorithm in radar systems is the constant false alarm rate (CFAR) detector.constant false alarm rate (CFAR) detector. , Los algoritmos adaptativos son aquellos quLos algoritmos adaptativos son aquellos que modifican su conducta de forma automática durante su ejecución,​ atendiendo a los cambios que se producen en su entorno o en el propio programa. También puede modificar su comportamiento basado en la información disponible y en un mecanismo (o criterio) de recompensa definido a priori. Dicha información puede ser la historia de los datos recibidos recientemente, información sobre los recursos computacionales disponibles, u otra información adquirida en tiempo de ejecución relacionada con el entorno en el que opera.elacionada con el entorno en el que opera. , Un algorithme adaptatif est un algorithme Un algorithme adaptatif est un algorithme qui est capable de changer automatiquement son comportement en fonction de son contexte d’exécution pour atteindre des performances optimales. Les changements peuvent être sur les données manipulées par l’algorithme, des paramètres de configurations de l’environnement d’exécution et de l'occupation des ressources. Ces algorithmes sont des algorithmes au sens classique, le terme adaptatif est ici utilisé pour souligner le fait que le comportement de l'algorithme peut varier de façon importante selon l'environnement.de façon importante selon l'environnement.
rdfs:label Algorithme adaptatif , Adaptive algorithm , Algoritmo adaptativo , Адаптивний алгоритм
hide properties that link here 
http://dbpedia.org/resource/Chosen-plaintext_attack + , http://dbpedia.org/resource/Phosh + , http://dbpedia.org/resource/Glossary_of_artificial_intelligence + , http://dbpedia.org/resource/Swathi_Weapon_Locating_Radar + , http://dbpedia.org/resource/Constant_false_alarm_rate + , http://dbpedia.org/resource/Program_optimization + , http://dbpedia.org/resource/Hilbert%E2%80%93Huang_transform + , http://dbpedia.org/resource/Adaptive_architecture + , http://dbpedia.org/resource/Learning_rate + , http://dbpedia.org/resource/Error-correcting_codes_with_feedback + http://dbpedia.org/ontology/wikiPageWikiLink
http://en.wikipedia.org/wiki/Adaptive_algorithm + http://xmlns.com/foaf/0.1/primaryTopic
http://dbpedia.org/resource/Adaptive_algorithm + owl:sameAs
 

 

Enter the name of the page to start semantic browsing from.