Update README.md
Browse files
README.md
CHANGED
|
@@ -12,30 +12,32 @@ datasets:
|
|
| 12 |
|
| 13 |
# SemanticGAN
|
| 14 |
|
| 15 |
-
This repository
|
| 16 |
|
| 17 |
-
|
| 18 |
|
| 19 |
## Project Context
|
| 20 |
|
| 21 |
-
SemanticGAN is a research prototype for Knowledge Graph Completion
|
| 22 |
|
| 23 |
-
|
|
|
|
| 24 |
|
| 25 |
-
A live dashboard
|
|
|
|
| 26 |
|
| 27 |
## Repository Contents
|
| 28 |
|
| 29 |
-
This repository
|
| 30 |
|
| 31 |
-
The file `gan_latest.pth`
|
| 32 |
|
| 33 |
-
The file `kg_triples_ids.txt`
|
| 34 |
|
| 35 |
-
The file `kg_mappings.json`
|
| 36 |
|
| 37 |
-
These
|
| 38 |
|
| 39 |
## Intended Usage
|
| 40 |
|
| 41 |
-
This repository is not
|
|
|
|
| 12 |
|
| 13 |
# SemanticGAN
|
| 14 |
|
| 15 |
+
This repository is used as the persistent storage for model checkpoints and processed data produced by the SemanticGAN project.
|
| 16 |
|
| 17 |
+
Training is performed through a continuous learning pipeline executed via GitHub Actions.
|
| 18 |
|
| 19 |
## Project Context
|
| 20 |
|
| 21 |
+
SemanticGAN is a research prototype for Knowledge Graph Completion built around a Wasserstein Generative Adversarial Network. The model is trained on the DBLP Computer Science Bibliography and is designed to generate candidate RDF triples that correspond to plausible but previously unobserved relations in the graph.
|
| 22 |
|
| 23 |
+
All source code, training scripts, and technical documentation are maintained in the main GitHub repository at
|
| 24 |
+
https://github.com/erdemonal11/SemanticGAN
|
| 25 |
|
| 26 |
+
A live dashboard showing training metrics and generated outputs is available at
|
| 27 |
+
https://erdemonal11.github.io/SemanticGAN
|
| 28 |
|
| 29 |
## Repository Contents
|
| 30 |
|
| 31 |
+
This repository reflects the current state of the continuous learning process.
|
| 32 |
|
| 33 |
+
The file `gan_latest.pth` contains the most recent Generator and Discriminator parameters produced by the training pipeline.
|
| 34 |
|
| 35 |
+
The file `kg_triples_ids.txt` stores the processed knowledge graph triples in integer encoded form.
|
| 36 |
|
| 37 |
+
The file `kg_mappings.json` defines the mapping between raw entity and relation labels and their corresponding numeric identifiers.
|
| 38 |
|
| 39 |
+
These artifacts are updated automatically after each training run and are consumed by the training and evaluation scripts in the GitHub repository.
|
| 40 |
|
| 41 |
## Intended Usage
|
| 42 |
|
| 43 |
+
This repository is not meant to be used for standalone inference. The stored model artifacts are intended to be loaded by the training and evaluation pipeline defined in the main SemanticGAN project, where checkpoint restoration and continued optimization are handled automatically.
|