E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Vocabulary
Kotlin
Vocabulary
| Kotlin 委托代理
有时候,完成一些工作的方法是将它们委托给别人。这里不是在建议您将自己的工作委托给朋友去做,而是在说将一个对象的工作委托给另一个对象。当然,委托在软件行业不是什么新鲜名词。委托(Delegation)是一种设计模式,在该模式中,对象会委托一个助手(helper)对象来处理请求,这个助手对象被称为代理。代理负责代表原始对象处理请求,并使结果可用于原始对象。Kotlin不仅支持类和属性的代理,其自身还包
Android开发者
·
2020-12-26 21:36
android
kotlin
Kotlin
Vocabulary
| 揭秘协程中的 suspend 修饰符
Kotlin协程把suspend修饰符引入到了我们Android开发者的日常开发中。您是否好奇它的底层工作原理呢?编译器是如何转换我们的代码,使其能够挂起和恢复协程操作的呢?了解这些将会帮您更好地理解挂起函数(suspendfunction)为什么只会在所有工作完成后才会返回,以及如何在不阻塞线程的情况下挂起代码。本文概要:Kotlin编译器将会为每个挂起函数创建一个状态机,这个状态机将为我们管理
Android开发者
·
2020-12-02 22:04
kotlin
android
Kotlin
Vocabulary
| 揭秘协程中的 suspend 修饰符
Kotlin协程把suspend修饰符引入到了我们Android开发者的日常开发中。您是否好奇它的底层工作原理呢?编译器是如何转换我们的代码,使其能够挂起和恢复协程操作的呢?了解这些将会帮您更好地理解挂起函数(suspendfunction)为什么只会在所有工作完成后才会返回,以及如何在不阻塞线程的情况下挂起代码。本文概要:Kotlin编译器将会为每个挂起函数创建一个状态机,这个状态机将为我们管理
Android开发者
·
2020-12-02 22:34
kotlin
android
Kotlin
Vocabulary
| 内联类 inline class
*特定条件和情况这篇博客描述了一个Kotlin试验性功能,它还在调整之中。本文基于Kotlin1.3.50撰写。类型安全帮助我们防止出现错误以及避免回过头去调试错误。对于Android资源文件,比如String、Font或Animation资源,我们可以使用androidx.annotations,通过使用像@StringRes、@FontRes这样的注解,就可以让代码检查工具(如Lint)限制我
Android开发者
·
2020-11-30 05:58
kotlin
android
Kotlin
Vocabulary
| 内联类 inline class
*特定条件和情况这篇博客描述了一个Kotlin试验性功能,它还在调整之中。本文基于Kotlin1.3.50撰写。类型安全帮助我们防止出现错误以及避免回过头去调试错误。对于Android资源文件,比如String、Font或Animation资源,我们可以使用androidx.annotations,通过使用像@StringRes、@FontRes这样的注解,就可以让代码检查工具(如Lint)限制我
Android开发者
·
2020-11-30 00:42
kotlin
android
Kotlin
Vocabulary
| 枚举和 R8 编译器
学习或使用一门新的编程语言时,了解这门语言所提供的功能,以及了解这些功能是否有相关联的开销,都是十分重要的环节。这方面的问题在Kotlin中显得更加有趣,因为Kotlin最终会编译为Java字节码,但是它却提供了Java所没有的功能。那么Kotlin是怎么做到的呢?这些功能有没有额外开销?如果有,我们能做些什么来优化它吗?接下来的内容与Kotlin中枚举(enums)和when语句(java中的s
Android开发者
·
2020-11-28 22:39
kotlin
android
编译器
Kotlin
Vocabulary
| 枚举和 R8 编译器
学习或使用一门新的编程语言时,了解这门语言所提供的功能,以及了解这些功能是否有相关联的开销,都是十分重要的环节。这方面的问题在Kotlin中显得更加有趣,因为Kotlin最终会编译为Java字节码,但是它却提供了Java所没有的功能。那么Kotlin是怎么做到的呢?这些功能有没有额外开销?如果有,我们能做些什么来优化它吗?接下来的内容与Kotlin中枚举(enums)和when语句(java中的s
Android开发者
·
2020-11-27 17:52
kotlin
android
编译器
Kotlin
Vocabulary
| 类型别名 typealias
作者/DavidWiner,Kotlin产品经理有时候一些可读性差、不够明确或者名字太长的类型声明会干扰代码的"自我表达"。这种情况下,可以使用Kotlin特别针对这个问题提供的特性:Typealias(本文下称"类型别名")。类型别名可以使您在不增加新类型的情况下,为现有类或函数类型提供替代名称。类型别名的使用使用类型别名为函数类型命名:typealiasTeardownLogic=()->Un
Android开发者
·
2020-11-25 20:02
kotlin
android
Kotlin
Vocabulary
| 类型别名 typealias
作者/DavidWiner,Kotlin产品经理有时候一些可读性差、不够明确或者名字太长的类型声明会干扰代码的"自我表达"。这种情况下,可以使用Kotlin特别针对这个问题提供的特性:Typealias(本文下称"类型别名")。类型别名可以使您在不增加新类型的情况下,为现有类或函数类型提供替代名称。类型别名的使用使用类型别名为函数类型命名:typealiasTeardownLogic=()->Un
Android开发者
·
2020-11-25 20:29
kotlin
android
Kotlin
Vocabulary
| 密封类 sealed class
我们经常需要在代码中声明一些有限集合,如:网络请求可能为成功或失败;用户账户是高级用户或普通用户。我们可以使用枚举来实现这类模型,但枚举自身存在许多限制。枚举类型的每个值只允许有一个实例,同时枚举也无法为每个类型添加额外信息,例如,您无法为枚举中的"Error"添加相关的Exception类型数据。当然也可以使用一个抽象类然后让一些类继承它,这样就可以随意扩展,但这会失去枚举所带来的有限集合的优势
Android开发者
·
2020-11-24 21:51
kotlin
android
Kotlin
Vocabulary
| 密封类 sealed class
我们经常需要在代码中声明一些有限集合,如:网络请求可能为成功或失败;用户账户是高级用户或普通用户。我们可以使用枚举来实现这类模型,但枚举自身存在许多限制。枚举类型的每个值只允许有一个实例,同时枚举也无法为每个类型添加额外信息,例如,您无法为枚举中的"Error"添加相关的Exception类型数据。当然也可以使用一个抽象类然后让一些类继承它,这样就可以随意扩展,但这会失去枚举所带来的有限集合的优势
Android开发者
·
2020-11-24 21:18
kotlin
android
Kotlin
Vocabulary
| Collection 和 Sequence
在很多场景中我们会使用到集合,Kotlin标准库(KotlinStandardLibrary)中提供了非常多出色的关于集合的实用函数。其中,Kotlin提供了基于不同执行方式的两种集合类型:立即执行(eagerly)的Collection类型,延迟执行(lazily)的Sequence类型。本篇文章将向您介绍两者的区别,并向您介绍这两种类型分别该在哪种情况下使用,以及它们的性能表现。获取更多相关信
Android开发者
·
2020-11-22 02:19
kotlin
android
Kotlin
Vocabulary
| Collection 和 Sequence
在很多场景中我们会使用到集合,Kotlin标准库(KotlinStandardLibrary)中提供了非常多出色的关于集合的实用函数。其中,Kotlin提供了基于不同执行方式的两种集合类型:立即执行(eagerly)的Collection类型,延迟执行(lazily)的Sequence类型。本篇文章将向您介绍两者的区别,并向您介绍这两种类型分别该在哪种情况下使用,以及它们的性能表现。获取更多相关信
Android开发者
·
2020-11-22 02:58
kotlin
android
[CVPR2020]论文翻译:On
Vocabulary
Reliance in Scene Text Recognition
幻灯片1.PNG幻灯片2.PNG幻灯片3.PNG幻灯片4.PNG幻灯片5.PNG幻灯片6.PNG幻灯片7.PNG幻灯片8.PNG幻灯片9.PNGAbstract在公共基准上追求高性能一直是场景文本识别研究的驱动力,并且已经取得了显著进展。但是,深入的调查揭示了一个令人吃惊的事实,即最先进的方法在带有词汇表内文字的图像上效果很好,但对于词汇表以外单词的图像的泛化性很差。我们称这种现象为“词汇依赖”。
JWDong2019
·
2020-11-21 20:36
商务英语 Level 3 Unit 1 Part 1
Vocabulary
【Office Supplies】
商务英语Level3Unit1Part1
Vocabulary
【OfficeSupplies】AprinterYoucanuseaprintertoturnacomputerfileintoapaperdocument.Theprinterisoutofpaper.Heisputtingpaperintheprinter.Excuseme.Ican'tgettheprintertowork.Isth
Joyce超会玩儿
·
2020-10-11 16:41
懂你英语 L5 Unit 1-2
vocabulary
爱情和关系
Abrokenheartiswhathappenswhenaloverelationshipisbrokenoff.Someonewiththebrokenheartisusuallydepressedwhichmeanstheyfeelawfulanddon’tenjoylife.Tofallinlovewithsomeonecanbeawonderfulexperience,withpower
fine08
·
2020-10-10 20:11
英语流利说 Level 4 Unit2 Part4
Vocabulary
Economic Terms
Incomeismoneyreceivedforaworkorfrominvestments.Foracompanytosurvive,itsincomeneedstobemorethanitsexpenses.Peoplewhoearnagoodsalarycanbuywhattheyneedtosurvive.Areceiptisgiventoyouafteryouhavepaidforsom
rivendell1984
·
2020-10-10 17:32
Kotlin
Vocabulary
| Reified: 类型擦除后再生计划
本文将会为大家介绍Kotlin的"reified"关键字,在介绍"reified"之前,我们得先提一下泛型(Generics)。泛型在编程领域中是一个很重要的概念,它提供了类型安全,并帮助开发者在编程时不需要进行显示的类型转换。泛型对编程语言的类型系统进行了扩展,从而允许一个类型或方法在保证编译时类型安全的前提下,还可以对不同类型的对象进行操作。但是使用泛型也会有一些限制,比如当您在泛型函数中想要
Android开发者
·
2020-10-09 13:01
android
kotlin
Hanlp中的word2Vec生成笔记
1、构建词表:将分词之后的词加入词汇表
vocabulary
(VocabWord[]:intcn,codelen;int[]point;Stringword;char[]code;),并统计词频。
生生不息123
·
2020-09-16 23:34
java
tf.contrib.learn.preprocessing.VocabularyProcessor
tf.contrib.learn.preprocessing.VocabularyProcessor(max_document_length,min_frequency=0,
vocabulary
=None
mstar1992
·
2020-09-13 06:17
tensorflow
Tokenizers: How machines read
Splittheinputintosmallerchunks)2.向量化(Representtheinputasavector)在训练向量前,我们要先确定好分词的协议(tokenizationpolicy).1)需要有一个庞大的词库(
vocabulary
Claroja
·
2020-09-12 22:02
Python
python
transformers model inputs
InputIDsfromtransformersimportBertTokenizertokenizer=BertTokenizer.from_pretrained("bert-base-uncased")sequence="ATitanRTXhas24GBofVRAM"#tokenizer依据它的
vocabulary
Claroja
·
2020-09-12 22:31
Python
python
英语流利说懂你英语 Level4 Unit2 Part1
Vocabulary
-Great Discoveries
Thecontrolleduseoffire,allowedpeopletocookfoodandsurviveincolderclimates.Fireprovidedlights,sothatpeoplecouldworkandsocializeforlongerhours.Withtheinventionofagriculture,peoplecouldgrowfoodandsettlein
wxl_dl
·
2020-08-25 11:07
去除mysql 里不可见字符
于是在PHPMyadmin中用MySQL的trim函数过滤了一下update字库setVocabulary=trim(
Vocabulary
)但返回的affectedrows数居然是0可以肯定不知道是哪个
huithe
·
2020-08-25 07:49
Mysql
懂你英语 Level4 Unit2 Part4
Vocabulary
- Economic Terms
Incomeismoneyreceivedforaworkorfrominvestments.Foracompanytosurvive,itsincomeneedstobemorethanitsexpenses.Peoplewhoearnagoodsalarycanbuywhattheyneedtosurvive.Areceiptisgiventoyouafteryouhavepaidforsom
Noah糯鸭粥
·
2020-08-25 03:31
[HFE] U2L3 Homework
本次学习内容:U2L3灰色练习册:Workbook-P26,ActivityA.MatchandwriteWorkbook-P26,ActivityB.Addthecommas(,)网络练习:Online-
Vocabulary
2Online-Grammar2Online-Phonics2
TimmySHENX
·
2020-08-25 00:23
Android用户界面布局(layouts)
理解为视图一个布局定义了用户界面的可视结构,比如activity的UI或是APPwidget的UI,我们可以用下面两种方式来声明布局:(1)在XML文件中声明UI元素,Android提供一种直观的XML词汇(
vocabulary
weixin_30512785
·
2020-08-24 23:32
用生命点燃篝火相暖
用生命点燃篝火相暖——一位英语老师课堂实录陈新莉,高中英语,课题《Earthquake——
Vocabulary
》。
渐行2018
·
2020-08-24 21:29
懂你英语 Level4 Unit2 Part1
Vocabulary
- Great Discoveries
Thecontrolleduseoffireallowedpeopletocookfoodandsurviveincolderclimates.Fireprovidedlightsothatpeoplecouldworkandsocializeforlongerhours.Withtheinventionofagriculture,peoplecouldgrowfoodandsettleintoc
Noah糯鸭粥
·
2020-08-24 12:50
English trip V1 - 辅导课
VOCABULARY
BRUSH UP(1-6) 词汇刷新 SA:Winona
1.HowDoyouFeelNow?形容词adj.=adjectiveDescribepeopleandthings2.Don'tDoThat!祈使句Sayingyourcommandsandrequirements3.WhatWouldYouLike?委婉、礼貌的表达TalkingaboutfastfoodandhealthI'd=IwouldorIwant4.DoyouHaveit?have/
335046781
·
2020-08-24 03:47
论文记录:Pointer Networks
PointernetworksAttentionmodelappliedtounlimited-
vocabulary
-outputseq-2-seqproblemswhichselectsoutputtokensfrominput.Ittakesattentionscorestodopointerselection
zy04
·
2020-08-24 01:54
paper
人工智能
AM
pointer
networks
text
summarization
懂你英语 Level4 Unit1 Part1
Vocabulary
- Pains and Sickness
Headachescanbeverypainfulandcanlastforalongtime.Ifyouhaveaheadacheyourheadhurts.Asprainedanklecanbesopainfulthatyoucan'twalk.Someonewithasprainedanklemayneedtousecrutchestowalk.Ifyouhaveasorethroat,it
Noah糯鸭粥
·
2020-08-24 01:51
Coursera课程自然语言处理(NLP)笔记整理(一)
文章目录1.有监督学习(SupervisedMachineLearning)1.1.情感分析(SentimentAnalysis)1.2.初步处理1.2.1.建立
Vocabulary
1.2.2.提取特征
豆沙粽子好吃嘛!
·
2020-08-24 00:49
NLP学习
The Gay Genius 苏东坡传 CH2眉山
图片发自App1.
Vocabulary
1.1Possessingahighintelligence,severeintemperament,independentinmind,andcrotchetyincharacter
王秀岩_95e7
·
2020-08-24 00:19
OpenCv下的xml文件在matlab下的读入
data_mat,0,0,1);cvmSet(data_mat,0,1,2);cvmSet(data_mat,1,0,3);cvmSet(data_mat,1,1,4);FileStoragefs("
vocabulary
.xml
我xihuan
·
2020-08-23 22:17
openCv;
matlab;
xml
【视觉slam十四讲】ch12:词袋模型
看高博的十四讲,跑了创建字典的例子,但是显示单词数是0:Numberofwords=0vocabularyinfo:
Vocabulary
:k=10,L=5,Weighting=tf-idf,Scoring
金刚哥葫芦娃
·
2020-08-23 10:24
视觉SLAM
英语流利说懂你英语 Level4 Unit3 Part2
Vocabulary
-Countries and Continents
Chinaisthesecondlargestcountryintheworldbylandarea.AmajorissueforChinaisthecontinuingexpansionofitsdeserts,whichhaveledtoduststormseachspring.SouthAsiaisreferredtoastheIndiansubcontinent.It'scalledasu
wxl_dl
·
2020-08-23 08:59
Joey-晓得-19.5.2
#
Vocabulary
#喝饮料用的吸管就是straw,如果向店员要吸管可以说:Givemeastraw,please.Doyouhaveastraw?你有吸管吗?
Joey_珍藏版
·
2020-08-23 03:29
Animal Farm - Chapter 8
Vocabulary
1.taciturn寡言少语的[Ataciturnpersondoesnotsayverymuchandcanseemunfriendly.]2.fineupstanding品行端正的
光影里
·
2020-08-22 19:25
商务英语 Level 5 Unit 2 Part 3
Vocabulary
【Market Methods】
Vocabulary
【MarketMethods】Therearetwomajortypesofmarketresearch:primaryresearchandsecondaryresearch.Severaldifferentmethodscanbeusedtoconductthisresearch.primaryresearchPrimaryresearchisconductedtogath
流非沫
·
2020-08-22 17:34
文本情感分析—数据预处理
数据预处理代码:引自:文本情感分析defload_data(filepath,input_shape=20):df=pd.read_csv(filepath)#标签及词汇表labels,
vocabulary
深夜喝牛奶
·
2020-08-22 14:48
机器学习
tensorflow.python.platform.gfile
astarget_file:target=target_file.readline()tensorflow.python.platform.gfile.Exists例子:ifnotgfile.Exists(
vocabulary
_path
Claus0319
·
2020-08-22 14:01
TensorFlow
英语流利说懂你英语Level4 Unit1 Part1
Vocabulary
-Landforms
Mountainsarelandformshigherthan2000feetorabout600metersabovesealevel.Hillsarelikemountainsbutnotastall.Mountainsareformedbyforcesdeepwithintheearth,andaremadeofmanytypesofrocks.Riversarestreamsofwater
wxl_dl
·
2020-08-22 10:42
Levle5-Unit2-Part2-
Vocabulary
VerbsforBusiness1Topromotetomovesomeoneuporganizationusuallybecausesheisdoneagoodjob.We'regoingtopromotehertomanager.Ifwedon'tpromotehimhe'llprobablybeupset.Theoppositeofpromoteisdemote.(Itlookslikewe
面码是个小小仙女
·
2020-08-22 05:02
英语流利说 Level5 Unit2 Part2
Vocabulary
:Verbs for Business
VerbsforBusinessTopromote,tomovesomeoneupanorganizationusuallybecauseshehasdoneagoodjob.Wearegoingtopromotehertomanager.Ifwedon'tpromotehim,he'llprobablybeupset.Theoppositeofpromoteisdemote.Itlookslik
LOVQ
·
2020-08-22 01:20
Vocabulary
词汇
1)insert2)onoccasion有时候notony...butalso不仅...而且...Polish波兰语3)investigateonsale&forsale4)inretrospect5)initial最开始的.reaction反应reactiontosth.对...的反应reliefn.欣慰6)phenomenaphenomenon的复效7)attached8)makeupford
Myhighlight
·
2020-08-21 21:13
[HFG] U5L2 Homework
本次上课内容:HFHU5L2本次作业:黄色练习册:TutorialWorkbook-P46.ActivityA.Readthetextandcheck.网络练习:parents.ef.cnOnline-
Vocabulary
2
TimmySHENX
·
2020-08-21 21:46
流利说 D18 2018-06-23 六
Level3-Unit2-Part1*Learning-Listening-"StatesandMatter"-D17-18/06/22二、学习Level3-Unit2-Part1*Learning-
Vocabulary
西特西
·
2020-08-21 19:25
流利说 D33 2018-07-27 五
Level3-Unit3-Part1*Learning-Listening-"Life&Conditions2"-D32-18/07/26三、学习Level3-Unit3-Part1*Learning-
Vocabulary
西特西
·
2020-08-21 18:54
英语流利说懂你英语 Level5 Unit2 Part2
Vocabulary
- Verbs for Business 1
Topromote,tomovesomeoneupinanorganizationusuallybecauseshehasdoneagoodjob.Wearegoingtopromotehertomanager.Ifwedon'tpromotehim,he'llprobablybeupset.Theoppositeofpromoteisdemote.(Itlookslikewepromotedhi
wxl_dl
·
2020-08-21 17:01
上一页
5
6
7
8
9
10
11
12
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他