You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromutilsimportread_yamlfrompipelineimportBasePipeline# modify the config, the example configuration file is located in the `config/` directory.map_reduce_config=read_yaml(
'/path/to/your/config.yaml')
# modify context and questioncontext='your context'qestion='your question'chunk_size=4096pipline=BasePipeline(map_reduce_config)
result=pipline.run(doc=context, question=qestion,chunk_size=chunk_size)
print('===============Final Result===============\n')
print(result)
这个是不是就只是加载了模型,没有页面?
The text was updated successfully, but these errors were encountered: