Views
No views yet
⚠️ IMPORTANT NOTE: Yeh model sirf testing purposes ke liye banaya gaya hai. This is a test-based version only for experimental analysis.
Countries.jsonl.csv) to provide insights into GDP trends and growth patterns during this testing phase.| File Name | Description |
|---|---|
testgdp.gguf | Quantized version for testing on mobile And Pc. |
testgdp.safetensors | Secure and fast-loading tensor format for Python. |
SKT_Final_Trained_Model.pth | Original PyTorch weights for testing. |
Countries.jsonl.csv | Dataset containing 160K records used for this test run. |
1import torch
2
3# Load the SKT-Net Weights
4checkpoint = torch.load('SKT_Final_Trained_Model.pth')
5
6# Verify Identity
7print(f"Model Name: {checkpoint.get('model_name', 'SKT-TEST-GDP')}")
8print(f"Developer: {checkpoint.get('developer', 'Shrijan Kumar Tiwari')}")
9