<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,...
<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...
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("Pontosság:", <span class="searchmatch">model</span>.score(X_test, y_test)) Ha szeretnéd...
output <span class="searchmatch">model</span> = Sequential() <span class="searchmatch">model</span>.add(Dense(4, input_dim=2, activation='relu')) <span class="searchmatch">model</span>.add(Dense(1, activation='sigmoid')) # Fordítás és tanítás <span class="searchmatch">model</span>...
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("Pontosság:", <span class="searchmatch">model</span>.score(X_test, y_test)) statistical...
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,...
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...
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...
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...
y[10:] = -1 # Címkézetlen adatok <span class="searchmatch">model</span> = LabelSpreading(kernel='knn', n_neighbors=5) <span class="searchmatch">model</span>.fit(X, y) predicted_labels = <span class="searchmatch">model</span>.transduction_ semi-supervised...