Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rjf/incremental inference #852
Rjf/incremental inference #852
Changes from 33 commits
3e87e50
a1e75a6
f4b1260
75ca7e7
091bf66
3ee7b07
c14c619
5fcd508
c6306b4
714c017
c1540f3
91bdfe4
567c4d8
b6fb2a7
dd90f1a
580498f
22bb419
92aa9c9
2f3be9a
de12282
c795a55
b98d5dc
a183b22
f318bea
5e37bc7
6637b70
fbae182
1320e96
c8d733d
4483a14
6aae056
1cd57d8
3f0a551
baf66f6
0b7649f
75c1a02
2ce8e06
d1e9af6
29cdc15
f8db4f2
6c73249
a5cb123
e00559e
b3be3d6
05278f2
351a75a
696b999
76b4f2e
c383740
d032601
6901b99
b252622
dab7295
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you currently use the dot-delimited path anywhere? Doesn't look like it...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think i was at first.. 🤔 i think i copied that logic from another config.py though? sorry, don't remember.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is
pkg_resource.resource_filename
which takes dot-delimited paths tooThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure what you mean by this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ooh no, pkg_resource is a nifty built-in python library that lets one reference files that are in a python package via dot notation. it gets around os-specific pathing.
for example, if you have a file
then you can reference this in code via
note, we need all directories in the path to be "python modules" aka have an init.py file in them for this to work.