├── Data ├── Medline │ ├── NpSideInfo.txt │ ├── RelSim.txt │ └── Triples.txt └── StackOverFlow │ ├── SideInfo.txt │ ├── SimMatrix.txt │ ├── Triples.txt │ └── UnlabeledSchemas.csv ├── LICENSE ├── README.md ├── requirements.txt └── src ├── Cnnrescal.py ├── dataCoherence.py ├── normComputer.py ├── runCRescal.py ├── tensorCreatorForCNNRescalWithScores.py └── tensorCreatorForCNNRescalWithoutScores.py /Data/Medline/NpSideInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/Data/Medline/NpSideInfo.txt -------------------------------------------------------------------------------- /Data/Medline/RelSim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/Data/Medline/RelSim.txt -------------------------------------------------------------------------------- /Data/Medline/Triples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/Data/Medline/Triples.txt -------------------------------------------------------------------------------- /Data/StackOverFlow/SideInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/Data/StackOverFlow/SideInfo.txt -------------------------------------------------------------------------------- /Data/StackOverFlow/SimMatrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/Data/StackOverFlow/SimMatrix.txt -------------------------------------------------------------------------------- /Data/StackOverFlow/Triples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/Data/StackOverFlow/Triples.txt -------------------------------------------------------------------------------- /Data/StackOverFlow/UnlabeledSchemas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/Data/StackOverFlow/UnlabeledSchemas.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/Cnnrescal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/src/Cnnrescal.py -------------------------------------------------------------------------------- /src/dataCoherence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/src/dataCoherence.py -------------------------------------------------------------------------------- /src/normComputer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/src/normComputer.py -------------------------------------------------------------------------------- /src/runCRescal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/src/runCRescal.py -------------------------------------------------------------------------------- /src/tensorCreatorForCNNRescalWithScores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/src/tensorCreatorForCNNRescalWithScores.py -------------------------------------------------------------------------------- /src/tensorCreatorForCNNRescalWithoutScores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malllabiisc/sictf/HEAD/src/tensorCreatorForCNNRescalWithoutScores.py --------------------------------------------------------------------------------