不知火舞的被虐|伊人天伊人天天综合网|博洛尼亚天气|任你懆这里只有精品4|久久美日韩精品久久|掌中之物漫画免费阅读观看|0丨d老妇

問(wèn)答 ls-dyna如何設(shè)置train_force中的數(shù)據(jù)按一定時(shí)間步長(zhǎng)輸出?

利用Ls-dyna模擬輪軌相互作用,用了rail_track和rail_train關(guān)鍵字,計(jì)算后得到了train_force的結(jié)果文件,但其中的輪軌力的數(shù)據(jù)是按照計(jì)算步長(zhǎng)輸出的,數(shù)據(jù)量比較大,應(yīng)該用什么關(guān)鍵字,可以控制數(shù)據(jù)按照一定的時(shí)間步長(zhǎng)輸出?

2574 1
Zach29 ??? 1年前
帖子 極限學(xué)習(xí)機(jī)matlab實(shí)戰(zhàn)
'apply',P_test,inputps);% 測(cè)試集[Tn_train,outputps] = mapminmax(T_train);Tn_test = mapminmax('apply',T_test,outputps);%% ELM創(chuàng)建/訓(xùn)練[IW,B,LW,TF,TYPE] = elmtrain(Pn_train,Tn_train,30,'sig',
2219
Matlab心得交流 ??? 2年前
極限學(xué)習(xí)機(jī)matlab實(shí)戰(zhàn)
帖子 如何處理 TensorFlow 模型中的過(guò)擬合?
# Split data into training, validation, and testing sets X_train_val, X_test, y_train_val, y_test = train_test_split(X, y, test_size=0.2, random_state=42) X_train, X_val, y_train, y_val = train_test_split
2413
仿真資料吧 ??? 1年前
帖子 基于灰狼算法優(yōu)化支持向量機(jī)的matlab算法
:end,end)';train_x=train_x'train_y=train_y';test_x=test_x';test_y=test_y';%% 數(shù)據(jù)預(yù)處理% 數(shù)據(jù)預(yù)處理,將訓(xùn)練集和測(cè)試集歸一化到[0,1]區(qū)間[mtrain,ntrain] = size(train_x);[mtest,ntest] = size(test_x);
2220
Matlab心得交流 ??? 2年前
基于灰狼算法優(yōu)化支持向量機(jī)的matlab算法
帖子 PINN求解burger方程,tensorflow框架,附代碼(三)
np.linalg.norm(u_star, 2) 計(jì)算u_star的2范數(shù)u_train_noisy = u_train + noise * np.std(u_train) * np.random.randn(u_train.shape[0], u_train.shape[1]) 噪聲影響,np.std(u_train)是u_train的標(biāo)準(zhǔn)差,np.random.randn
1534
晶體塑性有限元 ??? 6月前
PINN求解burger方程,tensorflow框架,附代碼(三)
帖子 分類(lèi)預(yù)測(cè) | MATLAB實(shí)現(xiàn)WOA-CNN-LSTM-Attention數(shù)據(jù)分類(lèi)預(yù)測(cè)
, ps_input] = mapminmax(P_train, 0, 1);p_test = mapminmax('apply', P_test, ps_input );t_train = T_train;t_test = T_test ;%% 特征選擇后的數(shù)據(jù)集p_train = p_train(save_index, :);p_test = p_test (save_index, :)
2802
Matlab心得交流 ??? 2年前
分類(lèi)預(yù)測(cè) | MATLAB實(shí)現(xiàn)WOA-CNN-LSTM-Attention數(shù)據(jù)分類(lèi)預(yù)測(cè)
帖子 使用 TensorFlow 實(shí)現(xiàn)神經(jīng)網(wǎng)絡(luò)
= train_df.drop('quality',axis=1) X_val = val_df.drop('quality',axis=1) y_train = train_df['quality']
2347
仿真資料吧 ??? 1年前
使用 TensorFlow 實(shí)現(xiàn)神經(jīng)網(wǎng)絡(luò)
帖子 基于降噪自編碼器-多層感知機(jī)(DAE-MLP)的手寫(xiě)數(shù)字分類(lèi)預(yù)測(cè)MATLAB實(shí)戰(zhàn)
+1:end), :);X_valid_labels = X_labels(perm_idx(n_train+1:end));X = X(perm_idx(1:n_train), :);X_labels = X_labels(perm_idx(1:n_train));layers = [size(X,2), 500, 500, 10];n_layers = length(layers);blayers
2630
Matlab心得交流 ??? 2年前
基于降噪自編碼器-多層感知機(jī)(DAE-MLP)的手寫(xiě)數(shù)字分類(lèi)預(yù)測(cè)MATLAB實(shí)戰(zhàn)
帖子 TensorFlow 中的 CIFAR-10 圖像分類(lèi)
# Load in the data cifar10 = tf.keras.datasets.cifar10 # Distribute it to train and test set (x_train, y_train), (x_test, y_test) = cifar10.load_data() print(x_train.shape, y_train.shape, x_test.shape
2315
仿真資料吧 ??? 1年前
TensorFlow 中的 CIFAR-10 圖像分類(lèi)
帖子 PINN零基礎(chǔ)入門(mén)指南,附代碼(一)
= [] val_losses = [] for epoch in range(num_epochs): model.train()#啟用訓(xùn)練模式 optimizer.zero_grad()#清除梯度 output_train = model(x_train)#前向傳播 loss_train = criterion(output_train, y_train
2304 1
晶體塑性有限元 ??? 7月前
PINN零基礎(chǔ)入門(mén)指南,附代碼(一)
帖子 yolov7-pytorch可用于訓(xùn)練自己的數(shù)據(jù)集
開(kāi)始網(wǎng)絡(luò)訓(xùn)練訓(xùn)練的參數(shù)較多,均在train.py中,大家可以在下載庫(kù)后仔細(xì)看注釋,其中最重要的部分依然是train.py里的classes_path。classes_path用于指向檢測(cè)類(lèi)別所對(duì)應(yīng)的txt,這個(gè)txt和voc_annotation.py里面的txt一樣!訓(xùn)練自己的數(shù)據(jù)集必須要修改!
2277
機(jī)器學(xué)習(xí)AI算法工程 ??? 3年前
yolov7-pytorch可用于訓(xùn)練自己的數(shù)據(jù)集
帖子 基于MATLAB的麻雀搜索算法實(shí)戰(zhàn)
= double(train_x) / 255;test_x = double(test_x) / 255;train_y = double(train_y);test_y = double(test_y);% [train_x,train_y,test_x,test_y,RealTrainYlabel,RealTestLabel] = TrainTestSplit(
2545
Matlab心得交流 ??? 2年前
基于MATLAB的麻雀搜索算法實(shí)戰(zhàn)
帖子 Tensorflow 中的卷積神經(jīng)網(wǎng)絡(luò) (CNN)
(train_images, train_labels), (test_images, test_labels) = cifar10.load_data() train_images, test_images = train_images / 255.0, test_images / 255.0 train_labels = to_categorical(train_labels, 10) test_labels
2268
仿真資料吧 ??? 1年前
Tensorflow 中的卷積神經(jīng)網(wǎng)絡(luò) (CNN)
帖子 機(jī)器學(xué)習(xí) |使用 Python 的多元線性回歸
Train-Test 拆分 X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
2466
仿真資料吧 ??? 1年前
機(jī)器學(xué)習(xí) |使用 Python 的多元線性回歸
帖子 在 Python 中使用 Tensorflow 檢測(cè)垃圾郵件
train_X, test_X, train_Y, test_Y = train_test_split(balanced_data['text'],
2394
仿真資料吧 ??? 1年前
在 Python 中使用 Tensorflow 檢測(cè)垃圾郵件
帖子 Tensorflow 中的長(zhǎng)短期記憶 (LSTM) RNN
) scaled_train = scaler.transform(train) scaled_test = scaler.transform(test)
2263
仿真資料吧 ??? 1年前
Tensorflow 中的長(zhǎng)短期記憶 (LSTM) RNN
帖子 干貨:重磅教學(xué)文章,Ansys Ensight Python Scripting
本文列述了Ansys Ensight Scripting Training 2021沒(méi)有涉及的內(nèi)容,并重點(diǎn)介紹了作者認(rèn)為學(xué)習(xí)Ensight Scripting重點(diǎn)需要知道的一些知識(shí)。
2657 1
Ansys中國(guó) ??? 4年前
干貨:重磅教學(xué)文章,Ansys Ensight Python Scripting
帖子 技術(shù)鄰Ansys培訓(xùn)如何快速掌握熱應(yīng)力核心技能?
://www.yqgqt.org.cn/training/details/fluent);LSDYNA模塊聚焦瞬態(tài)沖擊熱應(yīng)力問(wèn)題,結(jié)合15+實(shí)戰(zhàn)項(xiàng)目(如汽車(chē)保險(xiǎn)杠碰撞熱應(yīng)力、電池包擠壓熱失控仿真),講解顯式求解器參數(shù)配置與沖擊載荷耦合施加方法(鏈接:https://www.yqgqt.org.cn/training/details/lsdyna);NCode模塊則實(shí)現(xiàn)從“應(yīng)力分析”到“壽命預(yù)測(cè)”
3180
zhaozhi9241 ??? 6月前
視頻 RecurDyn Training Course
This course includes RecurDyn for beginners, covering the basics of MBD modeling, simulation setup, post-processing methods, and advanced MFBD applications.
530
杭州擬創(chuàng)(RecurDyn原廠) ??? 5月前
RecurDyn Training Course
帖子 命名實(shí)體識(shí)別工具,支持BertSoftmax、BertCrf、BertSpa,開(kāi)箱即用
Evaluation說(shuō)明:結(jié)果值均使用F1結(jié)果均只用該數(shù)據(jù)集的train訓(xùn)練,在test上評(píng)估得到的表現(xiàn),沒(méi)用外部數(shù)據(jù)shibing624/bert4ner-base-chinese模型達(dá)到同級(jí)別參數(shù)量SOTA效果,是用BertSoftmax方法訓(xùn)練, 運(yùn)行examples/training_ner_model_file_demo.py代碼可在各中文數(shù)據(jù)集復(fù)現(xiàn)結(jié)果
1913
機(jī)器學(xué)習(xí)AI算法工程 ??? 3年前
命名實(shí)體識(shí)別工具,支持BertSoftmax、BertCrf、BertSpa,開(kāi)箱即用
App下載
技術(shù)鄰APP
工程師必備
  • 項(xiàng)目客服
  • 培訓(xùn)客服
  • 平臺(tái)客服

TOP