English T5ForConditionalGeneration Cased model (from dbernsohn)

Description

Pretrained T5ForConditionalGeneration model, adapted from Hugging Face and curated to provide scalability and production-readiness using Spark NLP. t5_measurement_time is a English model originally trained by dbernsohn.

Download Copy S3 URI

How to use

documentAssembler = DocumentAssembler() \
    .setInputCols("text") \
    .setOutputCols("document")

t5 = T5Transformer.pretrained("t5_measurement_time","en") \
    .setInputCols("document") \
    .setOutputCol("answers")
    
pipeline = Pipeline(stages=[documentAssembler, t5])

data = spark.createDataFrame([["PUT YOUR STRING HERE"]]).toDF("text")

result = pipeline.fit(data).transform(data)
val documentAssembler = new DocumentAssembler() 
      .setInputCols("text")
      .setOutputCols("document")
       
val t5 = T5Transformer.pretrained("t5_measurement_time","en") 
    .setInputCols("document")
    .setOutputCol("answers")
   
val pipeline = new Pipeline().setStages(Array(documentAssembler, t5))

val data = Seq("PUT YOUR STRING HERE").toDS.toDF("text")

val result = pipeline.fit(data).transform(data)

Model Information

Model Name: t5_measurement_time
Compatibility: Spark NLP 4.3.0+
License: Open Source
Edition: Official
Input Labels: [documents]
Output Labels: [t5]
Language: en
Size: 278.9 MB

References

  • https://huggingface.co/dbernsohn/t5_measurement_time
  • https://ai.googleblog.com/2020/02/exploring-transfer-learning-with-t5.html
  • https://www.tensorflow.org/datasets/catalog/math_dataset#mathdatasetmeasurement_time
  • https://github.com/DorBernsohn/CodeLM/tree/main/MathLM
  • https://www.linkedin.com/in/dor-bernsohn-70b2b1146/