pdxjohnny on gh-pages
docs: Mon Apr 12 03:33:55 UTC 2… (compare)
pdxjohnny on gh-pages
docs: Sun Apr 11 03:25:49 UTC 2… (compare)
pdxjohnny on gh-pages
docs: Sat Apr 10 03:25:58 UTC 2… (compare)
pdxjohnny on gh-pages
docs: Fri Apr 9 09:06:22 UTC 2… (compare)
pdxjohnny on snyk-fix-98742e62125ff7eb5388f6071fd2b321
fix: operations/image/Dockerfil… (compare)
pdxjohnny on snyk-fix-98742e62125ff7eb5388f6071fd2b321
pdxjohnny on gh-pages
docs: Thu Apr 8 03:34:30 UTC 2… (compare)
pdxjohnny on snyk-fix-4bb1b9c4d21e4f4516cf5e3e12ac08c7
fix: operations/deploy/Dockerfi… (compare)
pdxjohnny on snyk-fix-4bb1b9c4d21e4f4516cf5e3e12ac08c7
pdxjohnny on snyk-fix-33ebe7b2b746d659c5dfc3c13083dda2
fix: dffml/skel/operations/Dock… (compare)
pdxjohnny on snyk-fix-33ebe7b2b746d659c5dfc3c13083dda2
pdxjohnny on gh-pages
docs: Thu Apr 8 01:24:05 UTC 2… (compare)
pdxjohnny on master
service: dev: Port scripts/docs… (compare)
pdxjohnny on snyk-fix-0d54f09ae78d71dd0a0ce473ce7ca45f
fix: operations/nlp/Dockerfile … (compare)
pdxjohnny on snyk-fix-0d54f09ae78d71dd0a0ce473ce7ca45f
pdxjohnny on snyk-fix-2aaa92e9ffe02c2d6cd25d10d023067f
fix: operations/binsec/Dockerfi… (compare)
pdxjohnny on snyk-fix-2aaa92e9ffe02c2d6cd25d10d023067f
pdxjohnny on gh-pages
docs: Wed Apr 7 03:26:10 UTC 2… (compare)
pdxjohnny on snyk-fix-f790ca3982aed8c5df308a329cd0f1ec
fix: operations/image/Dockerfil… (compare)
pdxjohnny on snyk-fix-f790ca3982aed8c5df308a329cd0f1ec
Hi @iamapickle ,
To understand the things, docs should be your friend :)
Documentation for the latest release - https://intel.github.io/dffml/
Documentation for the master branch - https://intel.github.io/dffml/master/index.html
Start looking in issues - https://github.com/intel/dffml/issues and try to solve "good first issue".
7d76b560 model: transformers: accuracy: Use mctx instead of self
4af8fc2b model: transformers: accuracy: Add the init file
e2097a27 model: transformers: accuracy: Add the qa scorer
1e431e1f model: transformers: accuracy: Add the ner scorer
ffc67888 model: transformers: accuracy: Add the classification scorer
d300d261 model: transformers: qa: Add the correct scorer
315cd5c1 model: transformers: qa: Add the tqa scorer
45228c14 model: transformers: ner: Add the correct scorer
49761ac5 model: transformers: ner: Add the tner scorer
b6450a73 model: transformers: classification: Add the correct scorer
95818d18 model: transformers: classification: Add the tclf scorer
0365a4c2 model: transformers: setup: Add the scorers
6690b3cd model: transformers: classification: Change the scorer
5f164760 model: transformers: classification: add the method to modelcontext
File "/home/runner/work/dffml/dffml/model/daal4py/tests/test_lr.py", line 77, in test_02_predict
correct = self.test_data[i]["Y"]
TypeError: list indices must be integers or slices, not str
i
in this case) to be int, it throws the error. Perhaps a bit redundant, but you could handle this by just casting the type back into int, in the tests that are failing./home/runner/work/dffml/dffml/model/daal4py/tests/test_lr.py", line 77
should be changed to: correct = self.test_data[int(i)]["Y"]
and similarly in the model/scratch
failing tests.
test
directory called test_styles
IntegrationCLITestCase
NoRecordsWithMatchingFeatures
exception, as if the test.csv
file was never changed. I checked if the files are being uploaded correctly, which they are, overwriting the old files. The train function seems to work fine but I can't seem to get the accuracy function to work unless I either restart the server, or name the test file differently (like test2.csv
for example) which I don't want to. Is there any way to get this to work fine? I believe this wasn't happening while using dffml 0.3.7
source
of the csv
file I came cross the following config params https://github.com/intel/dffml/blob/38ddb55ce0276b4590a9afc89dad47ba8cab1e5e/dffml/source/csv.py#L42 Can anyone who have worked on it give me a jist of what role does the following CSV_SOURCE_CONFIG_DEFAULT_tag CSV_SOURCE_CONFIG_DEFAULT_KEY
params does?