mirror of
https://github.com/mii443/tokenizers.git
synced 2025-12-07 13:18:31 +00:00
Formatting for python binding.
Signed-off-by: Morgan Funtowicz <morgan@huggingface.co>
This commit is contained in:
@@ -30,15 +30,12 @@ impl Model {
|
||||
for (key, value) in kwargs {
|
||||
let key: &str = key.extract()?;
|
||||
match key {
|
||||
"name" => {
|
||||
name = value.extract()?
|
||||
}
|
||||
"name" => name = value.extract()?,
|
||||
_ => println!("Ignored unknown kwarg option {}", key),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
let saved: PyResult<Vec<_>> = ToPyResult(
|
||||
self.model
|
||||
.execute(|model| model.save(Path::new(folder), name)),
|
||||
|
||||
Reference in New Issue
Block a user