印地语freeCodeCamp YouTube频道+不和谐聊天现已上线

Now you can get the same free and ad-free freeCodeCamp learning experience in Hindi.

现在,您可以在北印度语中获得免费和无广告的免费CodeCamp学习体验。

Today I'm excited to announce that we've launched a Hindi-language YouTube channel and Discord Chat server.

今天,我很高兴地宣布,我们已经启动了北印度语YouTube频道和Discord Chat服务器。

And later this year, we'll roll out a Hindi-language version of freeCodeCamp's curriculum, a Hindi forum, and more.

今年晚些时候,我们将推出freeCodeCamp课程的印地语版本,印地语论坛等。

We also hope to eventually translate freeCodeCamp into other major languages from the region, such as Bengali and Urdu.

我们还希望最终将freeCodeCamp转换为该地区的其他主要语言,例如孟加拉语和乌尔都语。

freeCodeCamp印地语YouTube频道 (The freeCodeCamp Hindi YouTube Channel)

So far, we already have two full courses on the channel: Flutter and Python.

到目前为止,我们已经在该频道上开设了两门完整的课程:Flutter和Python。

And Saturday we will live-stream the first segment of our 5-week-long Data Science with Python course.

星期六,我们将现场直播我们为期5周的Python数据科学课程的第一部分。

You can subscribe to the freeCodeCamp Hindi channel here.

您可以在此处订阅freeCodeCamp Hindi频道

This channel is run by prolific YouTuber Pawan Kumar.

该频道由多产的YouTuber Pawan Kumar主持。

Pawan is a Google Developer Expert for technologies like Flutter, Dart, and Firebase. He also runs a tech youtube channel called MTECHVIRAL.

Pawan是Google开发人员专家,研究过Flutter,Dart和Firebase等技术。 他还经营一个名为MTECHVIRAL的技术YouTube频道。

Pawan works as a head of Mobile Engineering at Frontier Wallet. He started his career as an Android dev when he was in college. He likes to experiment with new technologies, and talk about them at events and on his Twitter.

Pawan在Frontier Wallet担任移动工程主管。 他上大学时就以Android开发人员的身份开始了自己的职业生涯。 他喜欢尝试新技术,并在活动和Twitter上谈论它们。

Pawan has helped many developers until now around the world in learning new technologies and getting tech jobs.

到目前为止,Pawan帮助许多开发人员学习了新技术并获得了技术工作。

"When I was a child, I didn’t have many resources to learn new things. So I decided to help others in learning new awesome things." – Pawan Kumar
“当我还是个孩子的时候,我没有太多的资源来学习新事物。因此,我决定帮助他人学习令人敬畏的新事物。” – Pawan Kumar

And this lead to him creating the official Hindi-language freeCodeCamp YouTube channel.

因此,他创建了官方的北印度语免费代码营YouTube频道。

印地语Discord聊天服务器 (The Hindi Discord Chat Server)

We also just launched a Discord chat server where the global Hindi-speaking community can hang out and talk about tech and programming.

我们还刚刚推出了Discord聊天服务器 ,全球说北印度语的社区可以在那里闲逛并讨论技术和编程。

This follows the same strictly-enforced Code of Conduct as the rest of freeCodeCamp.

这遵循与freeCodeCamp其余部分相同的严格执行的行为准则

Pawan is a moderator here, along with Mrugesh Mohapatra from freeCodeCamp's core team.

Pawan和freeCodeCamp核心团队的Mrugesh Mohapatra都是主持人。

FreeCodeCamp国际化工作的未来 (The future of freeCodeCamp's Internationalization Efforts)

Our community is making steady progress in our internationalization efforts. Look for some other big announcements in the coming months.

我们的社区在我们的国际化努力中正在稳步发展。 在未来几个月内寻找其他重要公告。

Our goal is to eventually have a translated curriculum for every major world language, and in many cases also forums, Discord servers, and YouTube channels.

我们的目标是最终为每种主要世界语言提供翻译课程,在许多情况下,还包括论坛,Discord服务器和YouTube频道。

Again, you can subscribe to the Hindi YouTube channel here.

同样,您可以在此处订阅北印度语YouTube频道

And you can join the Hindi Discord chat server here.

您可以在此处加入Hindi Discord聊天服务器

Happy coding.

快乐的编码。

翻译自: https://www.freecodecamp.org/news/hindi-freecodecamp-youtube-discord/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是一个简单的英语到印地语的 seq2seq 模型代码示例: ```python from keras.models import Model from keras.layers import Input, LSTM, Dense # 定义模型输入和输出序列的最大长度 max_encoder_seq_length = 50 max_decoder_seq_length = 50 # 定义输入序列的维度 num_encoder_tokens = ... num_decoder_tokens = ... # 定义LSTM层的维度 latent_dim = 256 # 定义编码器模型 encoder_inputs = Input(shape=(None, num_encoder_tokens)) encoder = LSTM(latent_dim, return_state=True) encoder_outputs, state_h, state_c = encoder(encoder_inputs) encoder_states = [state_h, state_c] # 定义解码器模型 decoder_inputs = Input(shape=(None, num_decoder_tokens)) decoder_lstm = LSTM(latent_dim, return_sequences=True, return_state=True) decoder_outputs, _, _ = decoder_lstm(decoder_inputs, initial_state=encoder_states) decoder_dense = Dense(num_decoder_tokens, activation='softmax') decoder_outputs = decoder_dense(decoder_outputs) # 定义整个模型 model = Model([encoder_inputs, decoder_inputs], decoder_outputs) # 编译模型 model.compile(optimizer='rmsprop', loss='categorical_crossentropy') # 训练模型 model.fit([encoder_input_data, decoder_input_data], decoder_target_data, batch_size=batch_size, epochs=epochs, validation_split=0.2) # 预测模型 encoder_model = Model(encoder_inputs, encoder_states) decoder_state_input_h = Input(shape=(latent_dim,)) decoder_state_input_c = Input(shape=(latent_dim,)) decoder_states_inputs = [decoder_state_input_h, decoder_state_input_c] decoder_outputs, state_h, state_c = decoder_lstm(decoder_inputs, initial_state=decoder_states_inputs) decoder_states = [state_h, state_c] decoder_outputs = decoder_dense(decoder_outputs) decoder_model = Model([decoder_inputs] + decoder_states_inputs, [decoder_outputs] + decoder_states) # 定义预测函数 def decode_sequence(input_seq): states_value = encoder_model.predict(input_seq) target_seq = np.zeros((1, 1, num_decoder_tokens)) target_seq[0, 0, target_token_index['\t']] = 1. stop_condition = False decoded_sentence = '' while not stop_condition: output_tokens, h, c = decoder_model.predict([target_seq] + states_value) sampled_token_index = np.argmax(output_tokens[0, -1, :]) sampled_char = reverse_target_char_index[sampled_token_index] decoded_sentence += sampled_char if (sampled_char == '\n' or len(decoded_sentence) > max_decoder_seq_length): stop_condition = True target_seq = np.zeros((1, 1, num_decoder_tokens)) target_seq[0, 0, sampled_token_index] = 1. states_value = [h, c] return decoded_sentence ``` 需要注意的是,这只是一个简单的代码示例,实际上,seq2seq 模型需要更多的优化和调整才能在实际任务中获得好的性能。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值