deeplotx 0.4.11__py3-none-any.whl → 0.4.12b1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28,7 +28,7 @@ class LongTextEncoder(BertEncoder):
28
28
  def postprocess(tensors: list[torch.Tensor], _flatten: bool) -> torch.Tensor:
29
29
  if not _flatten:
30
30
  return torch.stack(tensors, dim=0).squeeze()
31
- _fin_emb_tensor = torch.tensor([], dtype=tensors[0].dtype)
31
+ _fin_emb_tensor = torch.tensor([], dtype=tensors[0].dtype, device=self.device)
32
32
  for _emb in tensors:
33
33
  _fin_emb_tensor = torch.cat((_fin_emb_tensor.detach().clone(), _emb.detach().clone()), dim=-1)
34
34
  return _fin_emb_tensor.squeeze()
@@ -55,8 +55,8 @@ class LongTextEncoder(BertEncoder):
55
55
  for i in range(num_chunks):
56
56
  _tmp_left = max(i * self._chunk_size - self._overlapping, 0)
57
57
  _tmp_right = (i + 1) * self._chunk_size + self._overlapping
58
- chunks.append((i, torch.tensor([_text_to_input_ids[_tmp_left: _tmp_right]], dtype=torch.int),
59
- torch.tensor([_text_to_input_ids_att_mask[_tmp_left: _tmp_right]], dtype=torch.int)))
58
+ chunks.append((i, torch.tensor([_text_to_input_ids[_tmp_left: _tmp_right]], dtype=torch.int, device=self.device),
59
+ torch.tensor([_text_to_input_ids_att_mask[_tmp_left: _tmp_right]], dtype=torch.int, device=self.device)))
60
60
  with ThreadPoolExecutor(max_workers=min(num_chunks + 1, 3)) as executor:
61
61
  embeddings = list(executor.map(self.__chunk_embedding, chunks))
62
62
  embeddings.sort(key=lambda x: x[0])
@@ -6,7 +6,7 @@ from torch import nn, optim
6
6
  from torch.utils.data import DataLoader, TensorDataset
7
7
 
8
8
  from deeplotx.encoder.long_text_encoder import LongTextEncoder
9
- from deeplotx.nn.logistic_regression import LogisticRegression
9
+ from deeplotx.nn.recursive_sequential import RecursiveSequential
10
10
  from deeplotx.trainer.base_trainer import BaseTrainer
11
11
 
12
12
  logger = logging.getLogger('deeplotx.trainer')
@@ -16,23 +16,26 @@ class TextBinaryClassifierTrainer(BaseTrainer):
16
16
  def __init__(self, long_text_encoder: LongTextEncoder, batch_size: int = 2, train_ratio: float = 0.8):
17
17
  super().__init__(batch_size=batch_size, train_ratio=train_ratio)
18
18
  self._long_text_encoder = long_text_encoder
19
+ self.device = self._long_text_encoder.device
19
20
 
20
21
  @override
21
22
  def train(self, positive_texts: list[str], negative_texts: list[str],
22
- num_epochs: int, learning_rate: float = 2e-5, balancing_dataset: bool = True,
23
+ num_epochs: int, learning_rate: float = 2e-6, balancing_dataset: bool = True,
23
24
  train_loss_threshold: float = 0.0, valid_loss_threshold: float = 0.0,
24
- alpha: float = 1e-4, rho: float = 0.2) -> LogisticRegression:
25
+ alpha: float = 1e-4, rho: float = 0.2,
26
+ hidden_dim: int = 256, recursive_layers: int = 2) -> RecursiveSequential:
25
27
  if balancing_dataset:
26
28
  min_length = min(len(positive_texts), len(negative_texts))
27
29
  positive_texts = positive_texts[:min_length]
28
30
  negative_texts = negative_texts[:min_length]
29
31
  all_texts = positive_texts + negative_texts
30
- labels = ([torch.tensor([1.0], dtype=torch.float32) for _ in range(len(positive_texts))]
31
- + [torch.tensor([0.0], dtype=torch.float32) for _ in range(len(negative_texts))])
32
- text_embeddings = [self._long_text_encoder.encode(x) for x in all_texts]
32
+ text_embeddings = [self._long_text_encoder.encode(x, flatten=False, use_cache=True) for x in all_texts]
33
33
  feature_dim = text_embeddings[0].shape[-1]
34
- inputs = torch.stack(text_embeddings)
35
- labels = torch.stack(labels)
34
+ dtype = text_embeddings[0].dtype
35
+ labels = ([torch.tensor([1.], dtype=dtype, device=self.device) for _ in range(len(positive_texts))]
36
+ + [torch.tensor([.0], dtype=dtype, device=self.device) for _ in range(len(negative_texts))])
37
+ inputs = torch.stack(text_embeddings).to(self.device)
38
+ labels = torch.stack(labels).to(self.device)
36
39
  dataset_size = len(labels)
37
40
  train_size = int(self._train_ratio * dataset_size)
38
41
  train_dataset = TensorDataset(inputs[:train_size], labels[:train_size])
@@ -43,14 +46,17 @@ class TextBinaryClassifierTrainer(BaseTrainer):
43
46
  logger.warning("The dimension of features doesn't match. A new model instance will be created.")
44
47
  self.model = None
45
48
  if self.model is None:
46
- self.model = LogisticRegression(input_dim=feature_dim, output_dim=1)
49
+ self.model = RecursiveSequential(input_dim=feature_dim, output_dim=1,
50
+ hidden_dim=hidden_dim,
51
+ recursive_layers=recursive_layers)
52
+ self.model.to(self.device)
47
53
  loss_function = nn.BCELoss()
48
54
  optimizer = optim.Adamax(self.model.parameters(), lr=learning_rate)
49
55
  for epoch in range(num_epochs):
50
56
  self.model.train()
51
57
  total_loss = 0.0
52
58
  for batch_texts, batch_labels in train_loader:
53
- outputs = self.model.forward(batch_texts)
59
+ outputs = torch.sigmoid(self.model.forward(batch_texts, self.model.initial_state(batch_texts.shape[0]))[0])
54
60
  loss = loss_function(outputs, batch_labels) + self.model.elastic_net(alpha=alpha, rho=rho)
55
61
  optimizer.zero_grad()
56
62
  loss.backward()
@@ -61,7 +67,7 @@ class TextBinaryClassifierTrainer(BaseTrainer):
61
67
  for batch_texts, batch_labels in valid_loader:
62
68
  with torch.no_grad():
63
69
  self.model.eval()
64
- outputs = self.model.forward(batch_texts)
70
+ outputs = torch.sigmoid(self.model.forward(batch_texts, self.model.initial_state(batch_texts.shape[0]))[0])
65
71
  loss = loss_function(outputs, batch_labels) + self.model.elastic_net(alpha=alpha, rho=rho)
66
72
  total_valid_loss += loss.item()
67
73
  self.model.train()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deeplotx
3
- Version: 0.4.11
3
+ Version: 0.4.12b1
4
4
  Summary: Easy-2-use long text NLP toolkit.
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
@@ -1,7 +1,7 @@
1
1
  deeplotx/__init__.py,sha256=wMN_AI14V-0BPbQghYpvd2y7eUGfhr7jKTTuur-5Upg,1002
2
2
  deeplotx/encoder/__init__.py,sha256=EM-xrTsHoGaiiFpj-iFAxilMHXC_sQKWYrcq1qCnI3U,138
3
3
  deeplotx/encoder/bert_encoder.py,sha256=IZsmkcmK6ulwTS4zubljW5uvq2r1Ik03nYG6jqcgQL8,2441
4
- deeplotx/encoder/long_text_encoder.py,sha256=7On6NuaINDZLqgb3HsSJBEzbWXNZPh_MXAvO5KY471k,3313
4
+ deeplotx/encoder/long_text_encoder.py,sha256=hl_O8kR9o1kcII9YfSx2rf_Pk0l_Rv7LNbsS9UsTU0c,3373
5
5
  deeplotx/encoder/longformer_encoder.py,sha256=vsDIiS9kLzvAalDnCGfTuAd2gfqDBgKUqPj6tPgF-BM,1886
6
6
  deeplotx/nn/__init__.py,sha256=oQ-vYXyuaGelfCOs2im_gZXAiiBlCCVXh1uw9yjvRMs,253
7
7
  deeplotx/nn/auto_regression.py,sha256=o82C9TREZbhGdj2knSVGTXhjJne0LGEqc7BllByJJWE,449
@@ -16,12 +16,12 @@ deeplotx/similarity/set.py,sha256=zhGFxtSIXlWqvipBYzoiPahp4g0boAIoUiMfG0wl07A,68
16
16
  deeplotx/similarity/vector.py,sha256=WVbDHqykt-fvuILVrhUCtIFAOEjY_zvttrXGM9eylG0,1125
17
17
  deeplotx/trainer/__init__.py,sha256=Fl5DR9UecQc5VtBcczU9sx_HtPNoFohpuELOh-Jrsks,77
18
18
  deeplotx/trainer/base_trainer.py,sha256=z0MeAT-rRYmjeBXt0ckt7J1itYArR0Cx02wHesXUoZE,385
19
- deeplotx/trainer/text_binary_classification_trainer.py,sha256=5O-5dwVMCj5EDX9gjJwCA468OR4UozJ7V8b-JxeUB0s,4080
19
+ deeplotx/trainer/text_binary_classification_trainer.py,sha256=CRu7YM5sbox1GsCyWwsZtxD68TSnzLV91QaHLHm9tdU,4648
20
20
  deeplotx/util/__init__.py,sha256=JxqAK_WOOHcYVSTHBT1-WuBwWrPEVDTV3titeVWvNUM,74
21
21
  deeplotx/util/hash.py,sha256=wwsC6kOQvbpuvwKsNQOARd78_wePmW9i3oaUuXRUnpc,352
22
22
  deeplotx/util/read_file.py,sha256=ptzouvEQeeW8KU5BrWNJlXw-vFXVrpS9SkAUxsu6A8A,612
23
- deeplotx-0.4.11.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
24
- deeplotx-0.4.11.dist-info/METADATA,sha256=klv-VdFTBgvSfm6KkqmjEtxXvCe_HO3E2ccoQG02Uxw,6285
25
- deeplotx-0.4.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
- deeplotx-0.4.11.dist-info/top_level.txt,sha256=hKg4pVDXZ-WWxkRfJFczRIll1Sv7VyfKCmzHLXbuh1U,9
27
- deeplotx-0.4.11.dist-info/RECORD,,
23
+ deeplotx-0.4.12b1.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
24
+ deeplotx-0.4.12b1.dist-info/METADATA,sha256=qCyRk3nz-Jy7_1UMvJ34AhvWfvqWfrISvx8T5-ieXZw,6287
25
+ deeplotx-0.4.12b1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
+ deeplotx-0.4.12b1.dist-info/top_level.txt,sha256=hKg4pVDXZ-WWxkRfJFczRIll1Sv7VyfKCmzHLXbuh1U,9
27
+ deeplotx-0.4.12b1.dist-info/RECORD,,