lib/torch/hub.rb in torch-rb-0.2.3 vs lib/torch/hub.rb in torch-rb-0.2.4
- old
+ new
@@ -2,8 +2,16 @@
module Hub
class << self
def list(github, force_reload: false)
raise NotImplementedYet
end
+
+ def download_url_to_file(url)
+ raise NotImplementedYet
+ end
+
+ def load_state_dict_from_url(url)
+ raise NotImplementedYet
+ end
end
end
end