Warning: Undefined variable $resultados in /home/enciclo/public_html/dictious.com/search.php on line 17
generative_model - Dictious

10 Talált eredmények " generative_model"

generative model

<span class="searchmatch">generative</span> <span class="searchmatch">model</span> (tsz. <span class="searchmatch">generative</span> models) (informatika) A <span class="searchmatch">generative</span> <span class="searchmatch">model</span> (generatív modell) a gépi tanulás és statisztika egy fontos modellcsaládja,...


generative artificial intelligence

<span class="searchmatch">generative</span> artificial intelligence (tsz. <span class="searchmatch">generative</span> artificial intelligences) (informatika, mesterséges intelligencia) A generatív mesterséges intelligencia...


machine learning

y_test = train_test_split(X, y) <span class="searchmatch">model</span> = LogisticRegression(max_iter=200) <span class="searchmatch">model</span>.fit(X_train, y_train) print(&quot;Pontosság:&quot;, <span class="searchmatch">model</span>.score(X_test, y_test)) Ha szeretnéd...


artificial neural network

output <span class="searchmatch">model</span> = Sequential() <span class="searchmatch">model</span>.add(Dense(4, input_dim=2, activation=&#039;relu&#039;)) <span class="searchmatch">model</span>.add(Dense(1, activation=&#039;sigmoid&#039;)) # Fordítás és tanítás <span class="searchmatch">model</span>...


statistical classification

y_test = train_test_split(X, y) <span class="searchmatch">model</span> = LogisticRegression(max_iter=200) <span class="searchmatch">model</span>.fit(X_train, y_train) print(&quot;Pontosság:&quot;, <span class="searchmatch">model</span>.score(X_test, y_test)) statistical...


transformer architecture

időbonyolultság: O(n²) a self-attention miatt import torch.nn as nn <span class="searchmatch">model</span> = nn.Transformer( d_<span class="searchmatch">model</span>=512, nhead=8, num_encoder_layers=6, num_decoder_layers=6,...


curriculum learning

medium_images = ... hard_images = ... train(<span class="searchmatch">model</span>, easy_images) train(<span class="searchmatch">model</span>, medium_images) train(<span class="searchmatch">model</span>, hard_images) A curriculum learning egy tanítási...


incremental learning

Experience Replay: kis „memória” adatmintákkal Pl. <span class="searchmatch">Generative</span> Replay: a korábbi adatokat generatív <span class="searchmatch">modellel</span> újraalkotjuk A modell paramétereinek változását...


nyelvi modell

modell (informatika, mesterséges intelligencia) A nyelvi modell (language <span class="searchmatch">model</span>) olyan mesterséges intelligencián alapuló számítógépes rendszer, amelyet...


semi-supervised learning

y[10:] = -1 # Címkézetlen adatok <span class="searchmatch">model</span> = LabelSpreading(kernel=&#039;knn&#039;, n_neighbors=5) <span class="searchmatch">model</span>.fit(X, y) predicted_labels = <span class="searchmatch">model</span>.transduction_ semi-supervised...