All Downloads are FREE. Search and download functionalities are using the official Maven repository.

resources.wrappers.FileJsonKeras.gate-lf-python-data.tests.example1.py Maven / Gradle / Ivy

Go to download

A GATE plugin that provides many different machine learning algorithms for a wide range of NLP-related machine learning tasks like text classification, tagging, or chunking.

There is a newer version: 4.2
Show newest version
from __future__ import print_function
from gatelfdata import Dataset
import sys

if len(sys.argv) != 2:
   raise Exception("Need one parameter: meta file")

file = sys.argv[1]

ds = Dataset(file)
valset = ds.convert_to_file()
for instance in ds.instances_as_data():
  print("Instance: ",instance)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy