Skip to main content

A transformer model with advanced features for casual language modeling.

Project description

TNSA Curiosity

TNSA Stable Curiosity is a transformer-based model architecture designed for casual language modeling tasks. It is an enhancement of the BERT model, optimized for various NLP tasks such as text classification, token classification, and language generation. The architecture features advanced mechanisms like gradient checkpointing, making it more efficient and scalable.

Installation

To install tnsa, you can use pip from PyPI:

pip install tnsa 

How to use Curiosity OpenModel Architecture(Based on ARCH-X 9)

from tnsa.stable.curiosity import TNSAforCasualLM

# Initialize the model
model = TNSAforCasualLM(
    hidden_size=768,
    num_hidden_layers=12,
    num_attention_heads=12,
    intermediate_size=3072,
    intermediate_act_fn='gelu',  # Can also use other activations like 'relu'
    hidden_dropout_prob=0.1,
    attention_probs_dropout_prob=0.1,
    initializer_range=0.02,
)

# Example input
input_tensor = ...  # Your input tensor here, with shape [batch_size, seq_length, hidden_size]
attention_mask = ...  # Your attention mask tensor here

# Forward pass through the model
output = model(input_tensor=input_tensor, attention_mask=attention_mask)

print(output)

#Instialize you training loop you can keep the parameters to default to re-create NGen2-Nano Base on OpenWEB

Key Parameters

hidden_size: The size of the hidden layers. Defaults to 768 (same as BERT's base).

num_hidden_layers: The number of transformer layers. Defaults to 12.

num_attention_heads: The number of attention heads in each layer. Defaults to 12.

intermediate_size: The size of the intermediate (feedforward) layer. Defaults to 3072.

intermediate_act_fn: The activation function to use in the intermediate layer. Default is gelu.

hidden_dropout_prob: Dropout probability for hidden layers. Default is 0.1.

attention_probs_dropout_prob: Dropout probability for attention layers. Default is 0.1.

initializer_range: The standard deviation of the initializer. Default is 0.02.

use_gradient_checkpointing: A boolean flag to enable or disable gradient checkpointing for memory efficiency. Default is False.

How Curiosity OpenModelArchitecture Differs from ARCH-X 9(Closed Source)

The Curiosity architecture is based on the standard transformer architecture used in NGen2, with the following enhancements:

Gradient Checkpointing: An optional feature to enable gradient checkpointing, allowing for more efficient memory usage during training. This is particularly useful when working with large models.

Improved Attention Mechanism: The attention mechanism has been fine-tuned for better handling of long-range dependencies and more accurate attention distributions.

Optimized Architecture: Custom improvements to layer normalization and dropout mechanisms help improve the model’s performance on various NLP tasks.

Model Performance

While Curiosity is similar to NGen2, it has been fine-tuned to outperform NGen2 in some language modeling tasks by using a more efficient memory usage pattern, which makes it better suited for tasks with large datasets or longer sequences.

License

The code is licensed under the NGen2Community License. Please review the LICENSE file for more details.While the base of the code is still closed sourced. you i.e (user or developer) should use it to develop custom models but not copy or modify the code itself.

Copyrighted and Licensed by:

Copyright (c) 2024, TNSAAI Inc. All rights reserved.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tnsa_stable_curiosity-0.1.0.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

tnsa.stable.curiosity-0.1.0-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file tnsa_stable_curiosity-0.1.0.tar.gz.

File metadata

  • Download URL: tnsa_stable_curiosity-0.1.0.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for tnsa_stable_curiosity-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f11e7afa9774b9b15ad50c40db64d4e3cfe7937d931b3bdff78523bdecc07423
MD5 cc23d4eef5b037d761a731f0d5f2da15
BLAKE2b-256 7eeceaf3db2af9f4682002ce3e5744fcd87aa298424210cad07743ab3085597d

See more details on using hashes here.

File details

Details for the file tnsa.stable.curiosity-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for tnsa.stable.curiosity-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 16145e01f737372a8b9f0f50959ecc0076fad2b9a0f1128265aaeca6f3cc6c87
MD5 dfa1eb17706107aff8a8a5a4a0d6ef1e
BLAKE2b-256 7e7325d64adcc971f065705bad8dde492bde0e4ce3e13bdf2b4bfd9490b28246

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page