Marcin Flis
Marcin Flis
Add command won't download feed file for you. Here's example of intended usage: https://github.com/ArchiveBox/ArchiveBox/wiki/Scheduled-Archiving#example-import-an-rss-feed-from-pocket-every-12-hours
Process of cleaning candidate links is described in `Cleaning the data` section of [blog]( https://openai.com/blog/discovering-types-for-entity-disambiguation/#cleaningthedata) (and probably somewhere in the paper too). Code performing this operation is in [extraction/fast_link_fixer.py](https://github.com/openai/deeptype/blob/master/extraction/fast_link_fixer.py) ....
Oracle accuracy is calculated using [extraction/evaluate_type_system.py](https://github.com/openai/deeptype/blob/master/extraction/evaluate_type_system.py) It takes [configurable](https://github.com/openai/deeptype/tree/master/extraction/configs) sample of wikipedia articles from xml dump and extracts links from them for evaluation. Main loop performing extraction is [here](https://github.com/openai/deeptype/blob/master/extraction/evaluate_type_system.py#L196-L233). Helper...
Your file system might not handle big files well. E.g. `FAT32` file system can't handle files bigger than 4GB. If that's the case you should reformat your hard drive to...
I've also encountered similar exception(when using https://github.com/census-ecosystem/opencensus-scala). I've pulled master of opencensus-java(precisely from this commit: https://github.com/census-instrumentation/opencensus-java/commit/49bac5037cadd5f50227ee87fe86d81043a1170a), built it locally, and used this version as my dependency. This resolved error. If...
I had similar issue. In my case I've run `setup_all.sh` then `pip install -r requirements.txt`, that installed different version of `tensorflow-gpu`. Solution: I've run `setup_all.sh` again (which creates `coref_kernels.so`). Now...