René's URL Explorer Experiment


Title: Proof of concept for allowing non-sklearn estimators by adelevie · Pull Request #160 · modAL-python/modAL · GitHub

Open Graph Title: Proof of concept for allowing non-sklearn estimators by adelevie · Pull Request #160 · modAL-python/modAL

X Title: Proof of concept for allowing non-sklearn estimators by adelevie · Pull Request #160 · modAL-python/modAL

Description: Not sure if there is any desire for this feature, but in this PR I have sketched out a way to use virtually any estimator type with the ActiveLearner and BayesianOptimizer classes. Motivation Allow us to use other training and inference facilities, such as HuggingFace models that are trained using the Trainer class, use AWS SageMaker Estimators, etc. With this added flexibility, the training and inference does not need to even run on the same hardware as the modAL code. This brings the suite of sampling methods here to many new applications, particularly resource-intensive deep learning models that typically don't fit that great under the sklearn interface. Implementation Rather than call the classic sklearn estimator functions such as fit, predict, predict_proba, and score, this PR adds a layer of callables that can be overridden: fit_func, predict_func, predict_proba_func, and score_func. def __init__(self, estimator: BaseEstimator, query_strategy: Callable = uncertainty_sampling, X_training: Optional[modALinput] = None, y_training: Optional[modALinput] = None, bootstrap_init: bool = False, on_transformed: bool = False, force_all_finite: bool = True, fit_func: FitFunction = SKLearnFitFunction(), predict_func: PredictFunction = SKLearnPredictFunction(), predict_proba_func: PredictProbaFunction = SKLearnPredictProbaFunction(), score_func: ScoreFunction = SKLearnScoreFunction(), **fit_kwargs ) -> None: I added SKLearn implementations of each by default (included their corresponding Protocol classes as well). Here's how fit works: class FitFunction(Protocol): def __call__(self, estimator: GenericEstimator, X, y, **kwargs) -> GenericEstimator: raise NotImplementedError # ... class SKLearnFitFunction(FitFunction): def __call__(self, estimator: BaseEstimator, X, y, **kwargs) -> BaseEstimator: return estimator.fit(X=X, y=y, **kwargs) I'll also note that the changes in this PR don't break any of the existing tests. Usage When using SageMaker, we might implement fit and predict_proba in this manner: class CustomEstimator: hf_predictor: Union[HuggingFacePredictor, Predictor] hf_estimator: HuggingFace def __init__(self, hf_predictor: HuggingFacePredictor, hf_estimator: HuggingFace): self.hf_predictor = hf_predictor self.hf_estimator = hf_estimator class CustomFitFunction(FitFunction): def __call__(self, estimator: CustomEstimator, X, y, **kwargs) -> CustomEstimator: # notice we don't use `y` -- the label is baked into the HuggingFace Dataset return estimator.hf_estimator.fit(X=X, **kwargs) class CustomPredictProbaFunction(PredictProbaFunction): @staticmethod def hf_prediction_to_proba(predictions: Union[List[Dict], object], positive_class_label: str = 'LABEL_1', negative_class_label: str = 'LABEL_0') -> np.array: label_key: str = 'label' score_key: str = 'score' p = [] for prediction in predictions: if positive_class_label == prediction[label_key]: score = prediction[score_key] p.append([score, 1.0 - score]) if negative_class_label == prediction[label_key]: score = prediction[score_key] p.append([1.0 - score, score]) return np.array(p) def __call__(self, estimator: CustomEstimator, X, **kwargs) -> np.array: return self.hf_prediction_to_proba( predictions=estimator.hf_predictor.predict(dict(inputs=X)) ) estimator = CustomEstimator(hf_predictor=hf_predictor, hf_estimator=hf_estimator) learner = ActiveLearner( estimator=estimator, fit_func=CustomFitFunction(), predict_proba_func=CustomPredictProbaFunction(), X_training=train_dataset # standard HuggingFace Dataset instead of your typical types for `X` in `sklearn` ) If you've made it this far, I'd ask that you forgive the clunkiness. This was a rough sketch of an idea I wanted to get written down before I forgot it. Anyways, would love some feedback, and if you think this PR is worth finishing, let me know. I can say for me, this would unlock a lot of really useful applications.

Open Graph Description: Not sure if there is any desire for this feature, but in this PR I have sketched out a way to use virtually any estimator type with the ActiveLearner and BayesianOptimizer classes. Motivation Allow...

X Description: Not sure if there is any desire for this feature, but in this PR I have sketched out a way to use virtually any estimator type with the ActiveLearner and BayesianOptimizer classes. Motivation Allow...

Opengraph URL: https://github.com/modAL-python/modAL/pull/160

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:ec757a86-ad58-cf1d-eef2-750847779568
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id86EA:1814C8:BCC0D3:F81FC0:698FB45B
html-safe-nonce93257c85a8c8d445793b08f1cd82350a7654a023c7afd10101898270a58dbbc4
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4NkVBOjE4MTRDODpCQ0MwRDM6RjgxRkMwOjY5OEZCNDVCIiwidmlzaXRvcl9pZCI6IjUyMzE0Nzc0MjE5NDU4OTM5NzkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacd2c2b70536df9170e791845277ddb799b2ad5282c8a13803089663b85017c562
hovercard-subject-tagpull_request:1023298701
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/modAL-python/modAL/pull/160/files
twitter:imagehttps://avatars.githubusercontent.com/u/86790?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/86790?s=400&v=4
og:image:altNot sure if there is any desire for this feature, but in this PR I have sketched out a way to use virtually any estimator type with the ActiveLearner and BayesianOptimizer classes. Motivation Allow...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None6df359c0989bb4eb7656e0047ab7a57a6657880db88f5a202f4e51ddbc3dfce8
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/modAL-python/modAL git https://github.com/modAL-python/modAL.git
octolytics-dimension-user_id42179679
octolytics-dimension-user_loginmodAL-python
octolytics-dimension-repository_id110697473
octolytics-dimension-repository_nwomodAL-python/modAL
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id110697473
octolytics-dimension-repository_network_root_nwomodAL-python/modAL
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
released09a7639fca70dcd33f2b127cabd422a73b10aef
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FmodAL-python%2FmodAL%2Fpull%2F160%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FmodAL-python%2FmodAL%2Fpull%2F160%2Ffiles
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=modAL-python%2FmodAL
Reloadhttps://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files
Reloadhttps://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files
Reloadhttps://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files
modAL-python https://patch-diff.githubusercontent.com/modAL-python
modALhttps://patch-diff.githubusercontent.com/modAL-python/modAL
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FmodAL-python%2FmodAL
Fork 327 https://patch-diff.githubusercontent.com/login?return_to=%2FmodAL-python%2FmodAL
Star 2.3k https://patch-diff.githubusercontent.com/login?return_to=%2FmodAL-python%2FmodAL
Code https://patch-diff.githubusercontent.com/modAL-python/modAL
Issues 93 https://patch-diff.githubusercontent.com/modAL-python/modAL/issues
Pull requests 12 https://patch-diff.githubusercontent.com/modAL-python/modAL/pulls
Actions https://patch-diff.githubusercontent.com/modAL-python/modAL/actions
Projects 0 https://patch-diff.githubusercontent.com/modAL-python/modAL/projects
Wiki https://patch-diff.githubusercontent.com/modAL-python/modAL/wiki
Security 0 https://patch-diff.githubusercontent.com/modAL-python/modAL/security
Insights https://patch-diff.githubusercontent.com/modAL-python/modAL/pulse
Code https://patch-diff.githubusercontent.com/modAL-python/modAL
Issues https://patch-diff.githubusercontent.com/modAL-python/modAL/issues
Pull requests https://patch-diff.githubusercontent.com/modAL-python/modAL/pulls
Actions https://patch-diff.githubusercontent.com/modAL-python/modAL/actions
Projects https://patch-diff.githubusercontent.com/modAL-python/modAL/projects
Wiki https://patch-diff.githubusercontent.com/modAL-python/modAL/wiki
Security https://patch-diff.githubusercontent.com/modAL-python/modAL/security
Insights https://patch-diff.githubusercontent.com/modAL-python/modAL/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2FmodAL-python%2FmodAL%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2FmodAL-python%2FmodAL%2Fissues%2Fnew%2Fchoose
adeleviehttps://patch-diff.githubusercontent.com/adelevie
modAL-python:masterhttps://patch-diff.githubusercontent.com/modAL-python/modAL/tree/master
adelevie:flexible-learner-interfacehttps://patch-diff.githubusercontent.com/adelevie/modAL/tree/flexible-learner-interface
Conversation 2 https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160
Commits 1 https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/commits
Checks 0 https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/checks
Files changed https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files
Please reload this pagehttps://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files
Proof of concept for allowing non-sklearn estimators https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#top
Show all changes 1 commit https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files
2344b6a Proof of concept for allowing non-sklearn estimators adelevie Aug 10, 2022 https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/commits/2344b6a8dbfd9076464c621bcacc40d8ab8fb8e0
Clear filters https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files
Please reload this pagehttps://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files
Please reload this pagehttps://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files
base.py https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
learners.py https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-85ccffde9a1d37a68f51a3d62d4c2c2fc96d0ba8c99eeadd4777161e2bbe004c
setup.py https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-60f61ab7a8d1910d86d9fda2261620314edcae5894d5aaa236b821c7256badd7
active_regression.py https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-47879ee541d29eda6a23ffbbfad787945fedaf0b3ffa0f541a27377a7a8a08b7
modAL/models/base.pyhttps://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
View file https://patch-diff.githubusercontent.com/modAL-python/modAL/blob/2344b6a8dbfd9076464c621bcacc40d8ab8fb8e0/modAL/models/base.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-70fbd7b22b2ba14aff0f6dc81c5f65c94740c5255fd6da673db956d166ec8815
modAL/models/learners.pyhttps://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-85ccffde9a1d37a68f51a3d62d4c2c2fc96d0ba8c99eeadd4777161e2bbe004c
View file https://patch-diff.githubusercontent.com/modAL-python/modAL/blob/2344b6a8dbfd9076464c621bcacc40d8ab8fb8e0/modAL/models/learners.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-85ccffde9a1d37a68f51a3d62d4c2c2fc96d0ba8c99eeadd4777161e2bbe004c
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-85ccffde9a1d37a68f51a3d62d4c2c2fc96d0ba8c99eeadd4777161e2bbe004c
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-85ccffde9a1d37a68f51a3d62d4c2c2fc96d0ba8c99eeadd4777161e2bbe004c
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-85ccffde9a1d37a68f51a3d62d4c2c2fc96d0ba8c99eeadd4777161e2bbe004c
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-85ccffde9a1d37a68f51a3d62d4c2c2fc96d0ba8c99eeadd4777161e2bbe004c
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-85ccffde9a1d37a68f51a3d62d4c2c2fc96d0ba8c99eeadd4777161e2bbe004c
setup.pyhttps://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-60f61ab7a8d1910d86d9fda2261620314edcae5894d5aaa236b821c7256badd7
View file https://patch-diff.githubusercontent.com/modAL-python/modAL/blob/2344b6a8dbfd9076464c621bcacc40d8ab8fb8e0/setup.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-60f61ab7a8d1910d86d9fda2261620314edcae5894d5aaa236b821c7256badd7
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-60f61ab7a8d1910d86d9fda2261620314edcae5894d5aaa236b821c7256badd7
tests/example_tests/active_regression.pyhttps://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-47879ee541d29eda6a23ffbbfad787945fedaf0b3ffa0f541a27377a7a8a08b7
View file https://patch-diff.githubusercontent.com/modAL-python/modAL/blob/2344b6a8dbfd9076464c621bcacc40d8ab8fb8e0/tests/example_tests/active_regression.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-47879ee541d29eda6a23ffbbfad787945fedaf0b3ffa0f541a27377a7a8a08b7
https://patch-diff.githubusercontent.com/modAL-python/modAL/pull/160/files#diff-47879ee541d29eda6a23ffbbfad787945fedaf0b3ffa0f541a27377a7a8a08b7
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.