Class: TencentCloud::Nlp::V20190408::CompoundParticiple

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190408/models.rb

Overview

复合粒度分词和词性标注的结果。

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(word = nil, beginoffset = nil, length = nil, pos = nil) ⇒ CompoundParticiple

Returns a new instance of CompoundParticiple.



250
251
252
253
254
255
# File 'lib/v20190408/models.rb', line 250

def initialize(word=nil, beginoffset=nil, length=nil, pos=nil)
  @Word = word
  @BeginOffset = beginoffset
  @Length = length
  @Pos = pos
end

Instance Attribute Details

#BeginOffsetObject

Parameters:

  • Word:

    基础词。

  • BeginOffset:

    基础词在NormalText中的起始位置。

  • Length:

    基础词的长度。

  • Pos:

    词性。



248
249
250
# File 'lib/v20190408/models.rb', line 248

def BeginOffset
  @BeginOffset
end

#LengthObject

Parameters:

  • Word:

    基础词。

  • BeginOffset:

    基础词在NormalText中的起始位置。

  • Length:

    基础词的长度。

  • Pos:

    词性。



248
249
250
# File 'lib/v20190408/models.rb', line 248

def Length
  @Length
end

#PosObject

Parameters:

  • Word:

    基础词。

  • BeginOffset:

    基础词在NormalText中的起始位置。

  • Length:

    基础词的长度。

  • Pos:

    词性。



248
249
250
# File 'lib/v20190408/models.rb', line 248

def Pos
  @Pos
end

#WordObject

Parameters:

  • Word:

    基础词。

  • BeginOffset:

    基础词在NormalText中的起始位置。

  • Length:

    基础词的长度。

  • Pos:

    词性。



248
249
250
# File 'lib/v20190408/models.rb', line 248

def Word
  @Word
end

Instance Method Details

#deserialize(params) ⇒ Object



257
258
259
260
261
262
# File 'lib/v20190408/models.rb', line 257

def deserialize(params)
  @Word = params['Word']
  @BeginOffset = params['BeginOffset']
  @Length = params['Length']
  @Pos = params['Pos']
end