rust-bert/examples/question_answering_squad.rs

35 lines
1.4 KiB
Rust
Raw Permalink Normal View History

2020-03-07 13:23:05 +03:00
// Copyright 2019-present, the HuggingFace Inc. team, The Google AI Language Team and Facebook, Inc.
// Copyright 2019 Guillaume Becquin
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
extern crate anyhow;
2020-03-07 13:23:05 +03:00
2020-06-23 17:54:46 +03:00
use rust_bert::pipelines::question_answering::{squad_processor, QuestionAnsweringModel};
2020-03-07 13:23:05 +03:00
use std::env;
2020-06-23 17:54:46 +03:00
use std::path::PathBuf;
2020-03-07 13:23:05 +03:00
fn main() -> anyhow::Result<()> {
2020-06-23 17:54:46 +03:00
// Set-up Question Answering model
2020-04-26 10:08:04 +03:00
let qa_model = QuestionAnsweringModel::new(Default::default())?;
2020-03-07 13:23:05 +03:00
2020-06-23 17:54:46 +03:00
// Define input
let mut squad_path = PathBuf::from(env::var("squad_dataset")
.expect("Please set the \"squad_dataset\" environment variable pointing to the SQuAD dataset folder"));
2020-03-07 13:23:05 +03:00
squad_path.push("dev-v2.0.json");
let qa_inputs = squad_processor(squad_path);
2020-06-23 17:54:46 +03:00
// Get answer
2020-03-07 17:46:27 +03:00
let answers = qa_model.predict(&qa_inputs, 1, 64);
println!("Sample answer: {:?}", answers.first().unwrap());
2020-03-07 17:21:02 +03:00
println!("{}", answers.len());
2020-03-07 13:23:05 +03:00
Ok(())
2020-06-23 17:54:46 +03:00
}