常用英文摘录

1、在个人简历中,专业技能掌握的熟练程度(Proficiency),一般可以分为:精通、熟悉、一般,三种分类。

参照IELTS评分标准,有九级:
1)Expert User
2)Very Good User
3)Good User
4) Competent User
5) Modest User
6) Limited User
7) Extremely Limited User
8)Intermittent User
9)Non-User
因此,这三个词可以表示为: Expert, Competent, Average 。

下面的表述我认为更合适。

精通 be proficient in
Proficient in ASP,JSP,JAVA,etc.
熟悉 skilled in
Skilled in use of MS FrontPage, Win 95/NT, Sun, JavaBeans and so on.
一般 general
General business knowledge relating to financial

有更多外语方面的问题,可以到译心译意网寻求帮助,互助翻译,专家在线答疑,如果外语能力较高,还可以到那里找专兼职工作,各语种的翻译,工作都有.一定会对你有帮助的.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是使用Conv1D和UpSampling1D的自编码器代码示例: ```python from keras.layers import Input, Conv1D, UpSampling1D from keras.models import Model input_signal = Input(shape=(100, 1)) # Encoder x = Conv1D(16, kernel_size=3, activation='relu', padding='same')(input_signal) x = Conv1D(8, kernel_size=3, activation='relu', padding='same')(x) encoded = Conv1D(1, kernel_size=3, activation='relu', padding='same')(x) # Decoder x = Conv1D(8, kernel_size=3, activation='relu', padding='same')(encoded) x = Conv1D(16, kernel_size=3, activation='relu', padding='same')(x) decoded = Conv1D(1, kernel_size=3, activation='sigmoid', padding='same')(x) # Autoencoder autoencoder = Model(input_signal, decoded) # Compile the model autoencoder.compile(optimizer='adam', loss='binary_crossentropy') # Train the model autoencoder.fit(x_train, x_train, epochs=10, batch_size=32, validation_data=(x_test, x_test)) # Encoder model encoder = Model(input_signal, encoded) # Decoder model decoder_input = Input(shape=(50, 1)) decoder_layer1 = autoencoder.layers[-3](decoder_input) decoder_layer2 = autoencoder.layers[-2](decoder_layer1) decoder_layer3 = autoencoder.layers[-1](decoder_layer2) decoder = Model(decoder_input, decoder_layer3) ``` 在上面的代码中,我们首先定义了输入信号的形状,并使用Conv1D层定义了编码器和解码器。编码器由三个卷积层组成,每个卷积层都使用3个内核大小,并具有ReLU激活函数。解码器与编码器类似,但最后一个卷积层使用sigmoid激活函数。我们使用autoencoder模型来训练自编码器,然后使用encoder和decoder模型来获取编码和解码信号。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值